From 543944439d9082718d06c2f3589759925dded473 Mon Sep 17 00:00:00 2001 From: Ismael Mendoza Date: Wed, 17 Apr 2024 15:08:27 -0400 Subject: [PATCH] exclude import errors in notebooks --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c310f793..65db8bbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -171,6 +171,7 @@ docstring-code-line-length = "dynamic" [tool.ruff.lint.per-file-ignores] "__init__.py" = ["E402", "I", "F"] "**/{tests,docs,tools}/*" = ["E402", "D", "PLR0915"] +"**/*.ipynb" = ["I"] [tool.ruff.lint.pydocstyle] convention="google"