We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3e76ee commit 81d8661Copy full SHA for 81d8661
src/murfey/util/__init__.py
@@ -87,6 +87,9 @@ def posix_path(path: Path) -> str:
87
Converts a Windows-style path into a Posix one. Used primarily when running
88
subproceses in bash terminals on Windows devices, which can only accept
89
Posix paths.
90
+
91
+ Returns it as a string because this path won't be recognised as an existing
92
+ path when converted to a Path object.
93
"""
94
path_parts = list(path.parts)
95
# Check if it's a Windows-style path and converts it to a Posix one
0 commit comments