diff --git a/.basedpyright/baseline.json b/.basedpyright/baseline.json index 5f9e48ba..1e70ce10 100644 --- a/.basedpyright/baseline.json +++ b/.basedpyright/baseline.json @@ -1956,7 +1956,7 @@ } }, { - "code": "reportAny", + "code": "reportUnknownParameterType", "range": { "startColumn": 4, "endColumn": 15, @@ -1980,7 +1980,7 @@ } }, { - "code": "reportAny", + "code": "reportUnknownVariableType", "range": { "startColumn": 11, "endColumn": 41, @@ -2092,15 +2092,15 @@ } }, { - "code": "reportAny", + "code": "reportArgumentType", "range": { - "startColumn": 11, - "endColumn": 35, + "startColumn": 18, + "endColumn": 21, "lineCount": 1 } }, { - "code": "reportAny", + "code": "reportUnknownParameterType", "range": { "startColumn": 4, "endColumn": 11, @@ -2124,13 +2124,29 @@ } }, { - "code": "reportAny", + "code": "reportUnknownVariableType", + "range": { + "startColumn": 25, + "endColumn": 28, + "lineCount": 1 + } + }, + { + "code": "reportUnknownVariableType", "range": { "startColumn": 11, "endColumn": 43, "lineCount": 1 } }, + { + "code": "reportUnknownArgumentType", + "range": { + "startColumn": 18, + "endColumn": 21, + "lineCount": 1 + } + }, { "code": "reportUnknownArgumentType", "range": { @@ -5449,14 +5465,6 @@ "lineCount": 1 } }, - { - "code": "reportUnknownParameterType", - "range": { - "startColumn": 4, - "endColumn": 25, - "lineCount": 1 - } - }, { "code": "reportUnknownParameterType", "range": { @@ -5529,14 +5537,6 @@ "lineCount": 1 } }, - { - "code": "reportUnknownVariableType", - "range": { - "startColumn": 8, - "endColumn": 14, - "lineCount": 1 - } - }, { "code": "reportAny", "range": { @@ -5544,14 +5544,6 @@ "endColumn": 43, "lineCount": 1 } - }, - { - "code": "reportUnknownVariableType", - "range": { - "startColumn": 11, - "endColumn": 17, - "lineCount": 1 - } } ], "./pytools/mpi.py": [ diff --git a/.gitignore b/.gitignore index 148bdf1c..3ec6b4a2 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ distribute*tar.gz .cache .mypy_cache +.venv *.dat diff --git a/pyproject.toml b/pyproject.toml index 3690b9d6..cffccd0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -128,6 +128,7 @@ exclude = [ ".conda-root", "build", ".env", + ".venv", ] # This reports even cycles that are qualified by 'if TYPE_CHECKING'. Not what