Metrics:
Total lines of code: 360
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-WD14-Tagger/pysssss.py
Line number: 90
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b110_try_except_pass.html
86	        try:
87	            import _winapi
88	            _winapi.CreateJunction(src, dst)
89	            return True
90	        except:
91	            pass
92	    try:
93	        os.symlink(src, dst)
94	        return True