Skip to content

Commit

Permalink
Ignore mypy errors on colorama import.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtesta committed Sep 28, 2024
1 parent 629008e commit cb6142c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ssh_audit/ssh_audit.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
# Only import colorama under Windows. Other OSes can natively handle terminal colors.
if sys.platform == 'win32':
try:
from colorama import just_fix_windows_console
from colorama import just_fix_windows_console # type: ignore
just_fix_windows_console()
except ImportError:
pass
Expand Down

0 comments on commit cb6142c

Please sign in to comment.