Metrics:
Total lines of code: 506
Total lines skipped (#nosec): 0

blacklist: Consider possible security implications associated with the subprocess module.
Test ID: B404
Severity: LOW
Confidence: HIGH
CWE: CWE-78
File: /custom_nodes/ComfyUI-Fast-Style-Transfer/FastStyleTransferNode.py
Line number: 14
More info: https://bandit.readthedocs.io/en/1.7.9/blacklists/blacklist_imports.html#b404-import-subprocess
10	from torchvision import models
11	import time
12	import os
13	import folder_paths
14	import subprocess as sp
15	import sys
16	
17	
subprocess_without_shell_equals_true: subprocess call - check for execution of untrusted input.
Test ID: B603
Severity: LOW
Confidence: HIGH
CWE: CWE-78
File: /custom_nodes/ComfyUI-Fast-Style-Transfer/FastStyleTransferNode.py
Line number: 209
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b603_subprocess_without_shell_equals_true.html
205	            '--save_model_every', str(save_model_every),
206	            '--seed', str(seed)
207	        ]
208	
209	        sp.run(command)
210	        return ()
211	
212