Make mypy checks more strict for lib/ and tui/ directories (#2811)

This commit is contained in:
correctmost 2024-11-15 18:14:25 -05:00 committed by GitHub
parent dff101e279
commit d9fa2718ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 3 deletions

View File

@ -97,7 +97,6 @@ follow_imports = "silent"
[[tool.mypy.overrides]]
module = "archinstall.lib.*"
strict_equality = false
warn_return_any = false
warn_unreachable = false
@ -107,8 +106,6 @@ warn_unreachable = false
[[tool.mypy.overrides]]
module = "archinstall.tui.*"
strict_equality = false
warn_return_any = false
warn_unreachable = false
[[tool.mypy.overrides]]