Moved join_path function to utilities module

This commit is contained in:
2023-07-25 16:24:18 +02:00
parent 92a986d090
commit 173783e154

View File

@@ -1738,3 +1738,7 @@ async def aio_subprocess_shell(command: str) -> Tuple[str, str]:
) )
) )
return stdout, stderr return stdout, stderr
def join_path(*args):
return os.path.abspath(os.path.join(*args))