From: Daniele Varrazzo Date: Tue, 22 Jul 2025 11:50:27 +0000 (+0200) Subject: chore: ignore mypy flag for unused ignore X-Git-Tag: 3.2.10~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7423cbebbbcd2384675f45f4556558f2fb79f09f;p=thirdparty%2Fpsycopg.git chore: ignore mypy flag for unused ignore Flagged by mypy 1.17 on CI, but we need to stay on mypy 1.14 in the maint 3.2 branch because of Python 3.8 compatibility. --- diff --git a/pyproject.toml b/pyproject.toml index bbd19b8ef..bb05a4433 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,7 +62,10 @@ disallow_untyped_defs = false disallow_untyped_calls = false [[tool.mypy.overrides]] -module = "tests.scripts.spiketest" +module = [ + "tests.scripts.spiketest", + "tests.types.test_range", +] warn_unused_ignores = false # for mypy 1.14 on Python 3.8 [tool.codespell]