Queer European MD passionate about IT
Browse Source

Moved join_path function to utilities module

Davte 1 năm trước cách đây
mục cha
commit
173783e154
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      davtelepot/utilities.py

+ 4 - 0
davtelepot/utilities.py

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