From 4c2f441de9dca9b78efb122a177e134491e6baca Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 19 Apr 2026 15:21:47 -0500 Subject: [PATCH 1/3] Update baseline --- .basedpyright/baseline.json | 66 +++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/.basedpyright/baseline.json b/.basedpyright/baseline.json index f240e967..ed1954a0 100644 --- a/.basedpyright/baseline.json +++ b/.basedpyright/baseline.json @@ -1081,6 +1081,54 @@ } ], "./grudge/geometry/metrics.py": [ + { + "code": "reportUnknownVariableType", + "range": { + "startColumn": 26, + "endColumn": 29, + "lineCount": 1 + } + }, + { + "code": "reportUnknownVariableType", + "range": { + "startColumn": 15, + "endColumn": 30, + "lineCount": 1 + } + }, + { + "code": "reportUnknownVariableType", + "range": { + "startColumn": 4, + "endColumn": 27, + "lineCount": 1 + } + }, + { + "code": "reportUnknownMemberType", + "range": { + "startColumn": 30, + "endColumn": 9, + "lineCount": 6 + } + }, + { + "code": "reportUnknownMemberType", + "range": { + "startColumn": 11, + "endColumn": 86, + "lineCount": 1 + } + }, + { + "code": "reportUnknownVariableType", + "range": { + "startColumn": 11, + "endColumn": 88, + "lineCount": 1 + } + }, { "code": "reportArgumentType", "range": { @@ -8565,6 +8613,24 @@ "lineCount": 1 } } + ], + "./test/test_op.py": [ + { + "code": "reportGeneralTypeIssues", + "range": { + "startColumn": 40, + "endColumn": 41, + "lineCount": 1 + } + }, + { + "code": "reportGeneralTypeIssues", + "range": { + "startColumn": 53, + "endColumn": 58, + "lineCount": 1 + } + } ] } } \ No newline at end of file From b20bb5ad209eb3d340d2e5acfcfe9a3dd82a2415 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 19 Apr 2026 15:22:16 -0500 Subject: [PATCH 2/3] Git ignore .venv --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2049bcbe..12478494 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ run-debug-* .cache .pytest_cache +.venv # pylint stuff .pylintrc.yml From 00da689382adc454bbc896d1cb54b0b034f8c264 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 19 Apr 2026 15:22:26 -0500 Subject: [PATCH 3/3] Bpr ignore .venv --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8f4c2d1c..c4ed31dc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -158,6 +158,7 @@ reportImportCycles = "none" exclude = [ "doc", ".conda-root", + ".venv", ] pythonVersion = "3.10" @@ -204,4 +205,3 @@ reportPossiblyUnboundVariable = "hint" reportPrivateUsage = "none" reportUnusedImport = "hint" reportIndexIssue = "hint" -