binaries update to 1.6.4

This commit is contained in:
imayushsaini 2021-06-26 13:48:13 +05:30
parent 02ec976174
commit d26d5a2102
986 changed files with 218181 additions and 206 deletions

View file

@ -125,7 +125,7 @@ def _windows_enable_color() -> bool:
mode = mask = ENABLE_VIRTUAL_TERMINAL_PROCESSING
try:
return set_conout_mode(mode, mask)
except WindowsError as exc:
except WindowsError as exc: # type: ignore
if exc.winerror == ERROR_INVALID_PARAMETER:
raise NotImplementedError from exc
raise