From 90f028545d7995c2e4bebfe6868ba2fc313235ce Mon Sep 17 00:00:00 2001 From: diegoferigo Date: Wed, 28 Feb 2024 13:44:16 +0100 Subject: [PATCH] Enhance type hints --- src/resolve_robotics_uri_py/resolve_robotics_uri_py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resolve_robotics_uri_py/resolve_robotics_uri_py.py b/src/resolve_robotics_uri_py/resolve_robotics_uri_py.py index 916b6cc..91a7443 100644 --- a/src/resolve_robotics_uri_py/resolve_robotics_uri_py.py +++ b/src/resolve_robotics_uri_py/resolve_robotics_uri_py.py @@ -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)