Skip to content

Commit 2016420

Browse files
committed
Clarify docstring
1 parent 3dfdacf commit 2016420

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mispr/gaussian/utilities/files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def bibtex_parser(bib_file, working_dir):
4343

4444
def recursive_relative_to_absolute_path(operand, working_dir):
4545
"""
46-
Convert recursively relative paths to absolute paths.
46+
Convert recursively relative file paths to absolute file paths.
4747
4848
Args:
4949
operand (str, list, dict): File, list of files, or a dictionary where the values
@@ -53,7 +53,7 @@ def recursive_relative_to_absolute_path(operand, working_dir):
5353
5454
Returns:
5555
str or list or dict: File, list of files, or dict where the values are the
56-
absolute paths.
56+
absolute file paths.
5757
"""
5858
if isinstance(operand, str):
5959
if os.path.isabs(operand):

0 commit comments

Comments
 (0)