From 1b2a5ec3c62c3df5fb3f7b92cac853be8eb03de6 Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Fri, 30 Aug 2024 16:07:36 +0200 Subject: [PATCH] Skip notebooks in linting for now --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 999ded2e..f652adbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -148,7 +148,7 @@ ignore = [ "B009", # getattr is useful to not mess with typing. ] line-length = 88 -exclude = ["docs", "build"] +exclude = ["docs", "build", "global_data/data_analysis_notebooks"] # Allow unused variables when underscore-prefixed. dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" target-version = "py39"