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

try_except_pass: Try, Except, Pass detected.
Test ID: B110
Severity: LOW
Confidence: HIGH
CWE: CWE-703
File: /custom_nodes/comfyui-profiler/__init__.py
Line number: 13
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b110_try_except_pass.html
9	import server
10	
11	_LOG_TIME = True
12	try: _LOG_TIME = os.getenv("COMFYUI_PROFILER_LOG_TIME", "true").lower() in ['true', '1']
13	except: pass
14	
15	_PRECISION = 4
16	try: _PRECISION = int(os.getenv("COMFYUI_PROFILER_PRECISION", _PRECISION))
try_except_pass: Try, Except, Pass detected.
Test ID: B110
Severity: LOW
Confidence: HIGH
CWE: CWE-703
File: /custom_nodes/comfyui-profiler/__init__.py
Line number: 17
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b110_try_except_pass.html
13	except: pass
14	
15	_PRECISION = 4
16	try: _PRECISION = int(os.getenv("COMFYUI_PROFILER_PRECISION", _PRECISION))
17	except: pass
18	
19	exist_recursive_execute = execution.recursive_execute
20	exist_PromptExecutor_execute = execution.PromptExecutor.execute