From 5a880c93bdd5304ab6b2fe80621d46dd3cdbfe04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cosmin=20=C8=98tefan=20Ciocan?= <57830279+cosminc98@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:26:40 +0000 Subject: [PATCH] Add isort config to help it find local modules so they are not considered 3rd party libraries --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2bc6d1d..6244158 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,7 @@ exclude_lines = [ [tool.isort] profile = "black" +src_paths = ["nvcc4jupyter"] # tells isort where to find local modules to not consider them 3rd party libraries [tool.bandit] exclude_dirs = ["build","dist","tests","scripts"]