From af0f586887f2134f1208e59e716c7a11ae8d489b Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Wed, 12 Jul 2023 17:29:53 -0400 Subject: [PATCH] ci: Set isort profile for standard-maintenance-scripts --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 633080c..a04e44a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,6 +5,9 @@ build-backend = "setuptools.build_meta" [tool.black] line-length = 119 +[tool.isort] +profile = "black" + [tool.ruff] line-length = 119 select = ["ALL"]