Files
proxy-scraper-checker/mypy.ini
T

22 lines
451 B
INI
Raw Normal View History

2024-02-07 09:01:55 +03:00
[mypy]
2024-10-17 14:18:27 +03:00
python_version = 3.9
2024-02-07 09:01:55 +03:00
disallow_subclassing_any = False
disallow_untyped_decorators = False
warn_unreachable = True
local_partial_types = True
enable_error_code =
redundant-self,
redundant-expr,
possibly-undefined,
truthy-bool,
truthy-iterable,
ignore-without-code,
unused-awaitable,
2024-02-10 11:16:14 +03:00
explicit-override,
2024-05-10 19:14:26 +03:00
unimported-reveal,
narrowed-type-not-subtype
2024-02-07 09:01:55 +03:00
strict = True
2024-05-31 13:48:09 +05:00
[mypy-aiohttp_socks.*,winloop.*]
2024-02-07 09:01:55 +03:00
ignore_missing_imports = True