Skip to content

Commit

Permalink
tox lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yaseminbridges committed Dec 5, 2023
1 parent 874925f commit f58f897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pheval/utils/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def obtain_closest_file_name(file_to_be_queried: Path, file_paths: list[Path]) -
Returns:
Path: The closest matching file path from the provided list.
"""
"""
stems = [Path(file_path).stem for file_path in file_paths]
closest_file_match = difflib.get_close_matches(
str(Path(file_to_be_queried).stem), stems, cutoff=0.1, n=1
Expand Down

0 comments on commit f58f897

Please sign in to comment.