From: Daniele Varrazzo Date: Sat, 13 Sep 2025 13:54:11 +0000 (+0200) Subject: chore: have a scrap directory where to put work scripts light on myoy X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1a47bea0222aa1489bd6ccb76c966d7acf9fd0ed;p=thirdparty%2Fpsycopg.git chore: have a scrap directory where to put work scripts light on myoy --- diff --git a/.gitignore b/.gitignore index 9ab9d6933..92910757b 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ htmlcov dist/ wheelhouse/ build/ +scrap/ diff --git a/pyproject.toml b/pyproject.toml index f8600296b..51b30efbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,10 @@ module = [ ignore_missing_imports = true [[tool.mypy.overrides]] -module = "tests.*" +module = [ + "tests.*", + "scrap.*", +] check_untyped_defs = true disallow_untyped_defs = false disallow_untyped_calls = false