tornado/setup.cfg

16 lines
373 B
INI
Raw Permalink Normal View History

[metadata]
license_file = LICENSE
[mypy]
python_version = 3.8
no_implicit_optional = True
[mypy-tornado.*,tornado.platform.*]
disallow_untyped_defs = True
2018-07-21 22:07:16 +00:00
# It's generally too tedious to require type annotations in tests, but
# we do want to type check them as much as type inference allows.
[mypy-tornado.test.*]
disallow_untyped_defs = False
2018-08-11 20:40:07 +00:00
check_untyped_defs = True