Enable --strict-bytes checks in mypy (#3189)

Strict-bytes checks will be enabled by default in mypy 2.0, so this
commit will help prevent violations from being introduced into the
codebase.
This commit is contained in:
correctmost 2025-02-21 22:24:52 -05:00 committed by GitHub
parent 957fa06ade
commit 4c2ec5deba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ disallow_untyped_decorators = true
disallow_untyped_defs = true
extra_checks = true
strict = false
strict_bytes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true