From bc46c2929b04a5e437273e9db82bc180fe95d481 Mon Sep 17 00:00:00 2001 From: Luke Van Seters Date: Mon, 13 Dec 2021 18:45:21 -0500 Subject: [PATCH] Fix isort settings so mev_inspect is considered this project --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5d69c1e..a2ab610 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,7 @@ include_trailing_comma = true lines_after_imports = 2 lines_between_types = 1 use_parentheses = true -src_paths = ["poetry", "tests"] +src_paths = ["mev_inspect", "tests"] skip_glob = ["*/setup.py"] filter_files = true -known_first_party = "poetry" +known_first_party = "mev_inspect"