From 1a47bea0222aa1489bd6ccb76c966d7acf9fd0ed Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Sat, 13 Sep 2025 15:54:11 +0200 Subject: [PATCH] chore: have a scrap directory where to put work scripts light on myoy --- .gitignore | 1 + pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) 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 -- 2.47.3