summaryrefslogtreecommitdiff
path: root/pylint/lint/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/lint/__init__.py')
-rw-r--r--pylint/lint/__init__.py13
1 files changed, 3 insertions, 10 deletions
diff --git a/pylint/lint/__init__.py b/pylint/lint/__init__.py
index 573d9c262..adc920708 100644
--- a/pylint/lint/__init__.py
+++ b/pylint/lint/__init__.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
"""Pylint [options] modules_or_packages.
@@ -27,12 +27,7 @@ from pylint.lint.report_functions import (
report_total_messages_stats,
)
from pylint.lint.run import Run
-from pylint.lint.utils import (
- _augment_sys_path,
- _patch_sys_path,
- augmented_sys_path,
- fix_import_path,
-)
+from pylint.lint.utils import _augment_sys_path, augmented_sys_path
__all__ = [
"check_parallel",
@@ -42,8 +37,6 @@ __all__ = [
"report_total_messages_stats",
"Run",
"ArgumentPreprocessingError",
- "_patch_sys_path",
- "fix_import_path",
"_augment_sys_path",
"augmented_sys_path",
"discover_package_path",