summaryrefslogtreecommitdiff
path: root/pylint/message/message_definition_store.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/message/message_definition_store.py')
-rw-r--r--pylint/message/message_definition_store.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/message/message_definition_store.py b/pylint/message/message_definition_store.py
index 7bbc70a51..4921be212 100644
--- a/pylint/message/message_definition_store.py
+++ b/pylint/message/message_definition_store.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
from __future__ import annotations
@@ -58,7 +58,7 @@ class MessageDefinitionStore:
# Since MessageDefinitionStore is only initialized once
# and the arguments are relatively small we do not run the
# risk of creating a large memory leak.
- # See discussion in: https://github.com/PyCQA/pylint/pull/5673
+ # See discussion in: https://github.com/pylint-dev/pylint/pull/5673
@functools.lru_cache( # pylint: disable=method-cache-max-size-none # noqa: B019
maxsize=None
)