From 6c45a86e161238f440a2638e2bae7404843e7e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alvaro=20Andr=C3=A9s=20Rodr=C3=ADguez=20Scelza?= Date: Fri, 7 Jun 2019 15:34:34 -0300 Subject: [PATCH] corrected docstring typo error --- pre_commit_hooks/loaderon_hooks/util/file_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pre_commit_hooks/loaderon_hooks/util/file_helpers.py b/pre_commit_hooks/loaderon_hooks/util/file_helpers.py index c7737ba..40505f2 100644 --- a/pre_commit_hooks/loaderon_hooks/util/file_helpers.py +++ b/pre_commit_hooks/loaderon_hooks/util/file_helpers.py @@ -22,7 +22,7 @@ def read_file_lines(file_path): def find_file_starting_from_reference_file_directory(reference_file, file_to_find): - """Attempts to find file_to_find by navigating through directories from reference_file parent directory.""" + """Attempts to find file_to_find by navigating through directories from reference_file's parent directory.""" file_path = os.path.realpath(reference_file) folder_path = os.path.dirname(file_path) for root, unused_dirs, files in os.walk(folder_path):