Skip to content

Commit 5d29e35

Browse files
committed
chore: ignore argparse_dataclass in mypy
1 parent bb94e87 commit 5d29e35

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ platforms = ["osx-arm64", "linux-64"]
3131

3232
[tool.pixi.pypi-dependencies]
3333

34-
3534
[tool.pixi.environments]
3635
dev = { features = ["dev"] }
3736
publish = { features = ["publish"] }
@@ -52,12 +51,15 @@ lint.ignore = ["E721"]
5251
disallow_untyped_defs = true
5352
warn_no_return = true
5453

55-
5654
[[tool.mypy.overrides]]
5755
# TODO:: figure out expected types for the TestRegistryBase class
5856
module = "snakemake_interface_common.plugin_registry.tests"
5957
ignore_errors = true
6058

59+
[[tool.mypy.overrides]]
60+
module = "argparse_dataclass"
61+
ignore_missing_imports = true
62+
6163
[tool.pixi.feature.dev.tasks.test]
6264
cmd = [
6365
"pytest",

0 commit comments

Comments
 (0)