From ccbb9f67eafe847c3bed18bb18d7a00d412dadd4 Mon Sep 17 00:00:00 2001 From: Falk Date: Wed, 21 Jan 2026 15:12:32 +0100 Subject: [PATCH] chore: clean up isort block from project config --- pyproject.toml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ccef06261..1db2201e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,16 +71,6 @@ ruff = "0.13.0" syrupy = "4.9.1" -[tool.isort] -skip = ["migrations", "snapshots"] -known_first_party = ["caluma"] -known_third_party = ["dateparser"] -multi_line_output = 3 -include_trailing_comma = true -force_grid_wrap = 0 -combine_as_imports = true -line_length = 88 - [tool.pytest.ini_options] addopts = "-n auto --reuse-db --randomly-seed=1521188766 --randomly-dont-reorganize" DJANGO_SETTINGS_MODULE = "caluma.settings.django" @@ -140,7 +130,8 @@ max-complexity = 11 [tool.ruff.lint.isort] combine-as-imports = true - +known-first-party = ["caluma"] +known-third-party = ["dateparser"] [tool.coverage.run] source = ["."]