Skip to content

Commit

Permalink
Work around Python 3.8 limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jun 22, 2024
1 parent 608bfc4 commit c22cf96
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion meta_package_manager/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,8 @@ def normalize_path(path: Path) -> str:
logging.debug(
"Search for "
f"{', '.join(theme.invoked_command(cli) for cli in search_filenames)} in:"
f"\n{'\n'.join(str(p) for p in search_path_list)}"
"\n"
f"{'\n'.join(str(p) for p in search_path_list)}"
)

for search_path in search_path_list:
Expand Down

0 comments on commit c22cf96

Please sign in to comment.