Skip to content

Commit

Permalink
Clean up v2 mypy ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
dstansby committed May 24, 2024
1 parent b1f4c50 commit 11f1e6d
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -202,42 +202,35 @@ disallow_untyped_calls = true

disallow_untyped_defs = true


[[tool.mypy.overrides]]
module = [
"zarr.v2.*",
"zarr.group",
"tests.*",
]
check_untyped_defs = false
ignore_errors = true

[[tool.mypy.overrides]]
module = [
"zarr.v2.*",
"zarr.array_v2",
"zarr.group",
"tests.*",
]
disallow_any_generics = false
check_untyped_defs = false

[[tool.mypy.overrides]]
module = [
"zarr.v2.*",
"zarr.array_v2",
"zarr.group"
]
disallow_incomplete_defs = false

[[tool.mypy.overrides]]
module = [
"zarr.v2.*",
"zarr.array_v2",
"zarr.array",
"zarr.buffer"
]
disallow_untyped_calls = false

[[tool.mypy.overrides]]
module = [
"zarr.v2.*",
"zarr.array_v2",
"zarr.array",
"zarr.group",
]
Expand Down

0 comments on commit 11f1e6d

Please sign in to comment.