From 2b3e378428dec083a96d194595309f0d80ad859e Mon Sep 17 00:00:00 2001 From: Christian Hartung Date: Fri, 21 Jul 2023 14:21:11 +0000 Subject: [PATCH] style: use black isort profile --- pyproject.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 62a0cbb..09b5eb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,12 +36,11 @@ line-length = 110 target-version = ["py38", "py39", "py310", "py311"] [tool.isort] -line_length = 100 -multi_line_output = 3 +profile = "black" +line_length = 110 known_localfolder = ["loafer", "tests"] sections = ["FUTURE", "STDLIB", "THIRDPARTY", "LOCALFOLDER"] default_section = "THIRDPARTY" -include_trailing_comma = true [tool.pytest.ini_options] testpaths = ["tests"]