From c77261321e5cb9a9f0bad1c0feadaa27a079a51f Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Thu, 12 Sep 2024 15:04:56 +0200 Subject: [PATCH] Ignore idioms --- noxconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxconfig.py b/noxconfig.py index a78b5779..f3f3dc49 100644 --- a/noxconfig.py +++ b/noxconfig.py @@ -35,7 +35,7 @@ class Config: root: Path = Path(__file__).parent doc: Path = Path(__file__).parent / "doc" version_file: Path = Path(__file__).parent / "exasol" / "toolbox" / "version.py" - path_filters: Iterable[str] = ("dist", ".eggs", "venv", "metrics-schema", "project-template") + path_filters: Iterable[str] = ("dist", ".eggs", "venv", "metrics-schema", "project-template", "idioms") plugins = [UpdateTemplates]