Skip to content

Commit

Permalink
Update isort link (#12834)
Browse files Browse the repository at this point in the history
the old link: https://timothycrosley.github.io/isort/ now redirects to https://pycqa.github.io/isort/ so we might as well use that.
  • Loading branch information
asherf authored Sep 10, 2021
1 parent add1a2d commit 690ca8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/python/pants/backend/python/lint/isort/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""Autoformatter for Python import statements.
See https://www.pantsbuild.org/docs/python-linters-and-formatters and
https://timothycrosley.github.io/isort/.
https://pycqa.github.io/isort/.
"""

from pants.backend.python.lint import python_fmt
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/backend/python/lint/isort/subsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

class Isort(PythonToolBase):
options_scope = "isort"
help = "The Python import sorter tool (https://timothycrosley.github.io/isort/)."
help = "The Python import sorter tool (https://pycqa.github.io/isort/)."

default_version = "isort[pyproject,colors]>=5.9.3,<6.0"
default_main = ConsoleScript("isort")
Expand Down

0 comments on commit 690ca8a

Please sign in to comment.