Skip to content

Commit

Permalink
Merge pull request #1899 from jupyterhub/black
Browse files Browse the repository at this point in the history
Describe *why* isort is configured, not what it is
  • Loading branch information
manics authored Jan 3, 2025
2 parents 97f7874 + fbdb331 commit 57e3b3a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ build-backend = "setuptools.build_meta"
target-version = ["py38", "py39", "py310", "py311"]


# isort is used for autoformatting Python code
# The default isort output conflicts with black autoformatting.
# Tell isort to behave nicely with black
# See https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
# for more information.
[tool.isort]
profile = "black"

Expand Down

0 comments on commit 57e3b3a

Please sign in to comment.