Metrics:
Total lines of code: 381
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-PromptAttention/clip_attention_mask.py
Line number: 66
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b110_try_except_pass.html
62	            if xx > 0:
63	                try:
64	                    weight = float(x[xx+1:])
65	                    x = x[:xx]
66	                except:
67	                    pass
68	            out += [("(", 0.0)]+token_weights(x, weight, default_weight=default_weight)+[(")", 0.0)]
69	        else:
70	            out += [(x, weight)]