diff --git a/pyproject.toml b/pyproject.toml index 3495242b..21a07844 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,4 +62,12 @@ ignore_missing_imports = true allow_redefinition = true strict_optional = false exclude = "(.eggs|.git|.hg|.mypy_cache|.nox|.tox|venv|.venv|doc-venv|.svn|_build|buck-out|build|dist|notebooks|tools|tmp|tests|bundles)" -disable_error_code = ["union-attr", "operator", "call-overload", "arg-type"] \ No newline at end of file +disable_error_code = ["union-attr", "operator", "call-overload", "arg-type"] + +[[tool.mypy.overrides]] +module = "kvpress.presses.base_press" +disable_error_code = ["attr-defined"] + +[[tool.mypy.overrides]] +module = "kvpress.pipeline" +disable_error_code = ["attr-defined", "assignment", "override"] \ No newline at end of file