Skip to content

Commit 47a8d46

Browse files
committed
fix: remove unused type ignores for CI compatibility
1 parent 75969a6 commit 47a8d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sitescanner/scanners/nmap_metasploit_fuzzy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
try:
1616
from rapidfuzz import fuzz
17-
except Exception: # pragma: no cover - optional dependency
17+
except ImportError: # pragma: no cover - optional dependency
1818
fuzz = None
1919

2020
if TYPE_CHECKING:

0 commit comments

Comments
 (0)