We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d6553 commit 14f845bCopy full SHA for 14f845b
‎pyproject.toml‎
@@ -64,11 +64,13 @@ test = [
64
[tool.mypy]
65
files = ["src", "tests"]
66
python_version = "3.10"
67
- enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
68
69
strict = true
70
disallow_incomplete_defs = true
71
disallow_untyped_defs = true
+ disable_bytearray_promotion = true # Note(2024-12-05): these are private flags
72
+ disable_memoryview_promotion = true # Note(2024-12-05): these are private flags
73
+ enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
74
75
warn_return_any = true
76
warn_unreachable = true
0 commit comments