From ac5895e817c9e033fbc3c0a9c166e03c12fb27e3 Mon Sep 17 00:00:00 2001 From: Hugo Cachitas Date: Mon, 8 Apr 2024 19:30:01 +0100 Subject: [PATCH] Add isort config --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d6bd36f..1569e4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,9 @@ path = "src/stringx/client.py" [tool.pdm.scripts] test = "pytest -v tests/" +[tool.isort] +profile = "black" + [tool.ruff] lint.select = [ "B", # flake8-bugbear @@ -74,7 +77,6 @@ lint.select = [ "W", # pycodestyle - Warning "UP", # pyupgrade ] - extend-include = ["*.ipynb"] [tool.mypy]