summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorTamas Szabo <szabtam@gmail.com>2020-08-25 09:21:13 +0300
committerTamas Szabo <szabtam@gmail.com>2020-08-25 09:21:13 +0300
commitef5cdee0974c3403ee4e576e0f325f7746cc7553 (patch)
treec6b08b3cb6d6178b7cc6b1bd9ad63b575e0195c4 /scripts
parent8e0ee9866c8f282786dfd94b127da69e0e13b30f (diff)
downloadisort-ef5cdee0974c3403ee4e576e0f325f7746cc7553.tar.gz
Update timothycrosley references to pycqa
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build_config_option_docs.py3
-rwxr-xr-xscripts/check_acknowledgments.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/scripts/build_config_option_docs.py b/scripts/build_config_option_docs.py
index 917732bd..d57e96c5 100755
--- a/scripts/build_config_option_docs.py
+++ b/scripts/build_config_option_docs.py
@@ -21,7 +21,8 @@ As a code formatter isort has opinions. However, it also allows you to have your
isort will disagree but commit to your way of formatting. To enable this, isort exposes a plethora of options to specify
how you want your imports sorted, organized, and formatted.
-Too busy to build your perfect isort configuration? For curated common configurations, see isort's [built-in profiles](https://timothycrosley.github.io/isort/docs/configuration/profiles/).
+Too busy to build your perfect isort configuration? For curated common configurations, see isort's [built-in
+profiles](https://pycqa.github.io/isort/docs/configuration/profiles/).
"""
parser = _build_arg_parser()
diff --git a/scripts/check_acknowledgments.py b/scripts/check_acknowledgments.py
index eab364e5..27aa84c8 100755
--- a/scripts/check_acknowledgments.py
+++ b/scripts/check_acknowledgments.py
@@ -10,7 +10,7 @@ import hug
IGNORED_AUTHOR_LOGINS = {"deepsource-autofix[bot]"}
-REPO = "timothycrosley/isort"
+REPO = "pycqa/isort"
GITHUB_API_CONTRIBUTORS = f"https://api.github.com/repos/{REPO}/contributors"
GITHUB_USER_CONTRIBUTIONS = f"https://github.com/{REPO}/commits?author="
GITHUB_USER_TYPE = "User"