Skip to content

Commit

Permalink
Enhance type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Feb 28, 2024
1 parent c761fd8 commit 90f0285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolve_robotics_uri_py/resolve_robotics_uri_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def get_search_paths_from_envs(env_list: Iterable[str]) -> list[pathlib.Path]:
return existing_search_paths


def pathlist_list_to_string(path_list):
def pathlist_list_to_string(path_list: Iterable[str | pathlib.Path]) -> str:
return " ".join(str(path) for path in path_list)


Expand Down

0 comments on commit 90f0285

Please sign in to comment.