From 29e7615d2005bc3e9177c84a0b09de7c55268cbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D0=BE=D0=BA=D0=BE=D1=81=20=D0=90=D1=80=D1=82=D0=B5?= =?UTF-8?q?=D0=BC=20=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B5=D0=B2=D0=B8?= =?UTF-8?q?=D1=87?= Date: Fri, 17 Jul 2026 15:25:52 +0700 Subject: [PATCH] chore: configure isort to use black profile isort --check-only failed on 6 files because the project had no isort configuration and its default style conflicts with black/ruff-format. With profile = "black" all formatters agree; no source changes needed. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9065cce..3380787 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,3 +55,6 @@ warn_unused_configs = true [[tool.mypy.overrides]] module = ["odf.*", "redminelib.*", "tabulate", "openpyxl.*", "yaml", "requests", "urllib3.*"] ignore_missing_imports = true + +[tool.isort] +profile = "black"