1[mypy] 2python_version = 3.10 3 4no_incremental = True 5cache_dir=/dev/null 6 7disallow_untyped_defs = True 8 9disallow_any_unimported = True 10disallow_any_explicit = True 11 12no_implicit_optional = True 13show_error_codes = True 14check_untyped_defs = True 15 16warn_redundant_casts = True 17warn_unused_ignores = True 18warn_return_any = True 19warn_unreachable = True 20enable_error_code = ignore-without-code 21 22[mypy-tqdm.*] 23ignore_missing_imports = True