summaryrefslogtreecommitdiff
path: root/pylint/config/find_default_config_files.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/config/find_default_config_files.py')
-rw-r--r--pylint/config/find_default_config_files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/config/find_default_config_files.py b/pylint/config/find_default_config_files.py
index dd051f9c6..36fd351f0 100644
--- a/pylint/config/find_default_config_files.py
+++ b/pylint/config/find_default_config_files.py
@@ -71,7 +71,7 @@ def find_default_config_files() -> Iterator[str]:
def find_pylintrc() -> Optional[str]:
- """search the pylint rc file and return its path if it find it, else None"""
+ """Search the pylint rc file and return its path if it finds it, else return None"""
for config_file in find_default_config_files():
if config_file.endswith("pylintrc"):
return config_file