File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4848 - flake8-tidy-imports
4949 - flake8-typing-imports
5050- repo : https://github.com/pre-commit/mirrors-mypy
51- rev : v0.982
51+ rev : v0.990
5252 hooks :
5353 - id : mypy
5454 additional_dependencies :
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ target-version = ['py37']
77
88[tool .mypy ]
99mypy_path = " src/"
10+ namespace_packages = false
1011show_error_codes = true
1112strict = true
1213warn_unreachable = true
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ def pytest_configure(config: Config) -> None:
119119 elif seed_value == "default" :
120120 if hasattr (config , "workerinput" ): # pragma: no cover
121121 # pytest-xdist: use seed generated on main.
122- seed = config .workerinput ["randomly_seed" ] # type: ignore [attr-defined]
122+ seed = config .workerinput ["randomly_seed" ]
123123 else :
124124 seed = default_seed
125125 else :
You can’t perform that action at this time.
0 commit comments