summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/format.py')
-rw-r--r--pylint/checkers/format.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index 562c48f5d..62466a4fd 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -1,6 +1,6 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
-# Copyright (c) https://github.com/PyCQA/pylint/blob/main/CONTRIBUTORS.txt
+# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
+# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
"""Python code format's checker.
@@ -346,7 +346,7 @@ class FormatChecker(BaseTokenChecker, BaseRawFileChecker):
if found_and_or:
return
if keyword_token == "in":
- # This special case was added in https://github.com/PyCQA/pylint/pull/4948
+ # This special case was added in https://github.com/pylint-dev/pylint/pull/4948
# but it could be removed in the future. Avoid churn for now.
return
self.add_message(
@@ -667,8 +667,8 @@ class FormatChecker(BaseTokenChecker, BaseRawFileChecker):
self.add_message("missing-final-newline", line=lineno + offset)
continue
# We don't test for trailing whitespaces in strings
- # See https://github.com/PyCQA/pylint/issues/6936
- # and https://github.com/PyCQA/pylint/issues/3822
+ # See https://github.com/pylint-dev/pylint/issues/6936
+ # and https://github.com/pylint-dev/pylint/issues/3822
if tokens.type(line_start) != tokenize.STRING:
self.check_trailing_whitespace_ending(line, lineno + offset)