You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the script is only supported to run on Windows.
This issue is for making it compatible with Unix-based systems.
The script is using the \\ separator to build file paths. While this works fine on Windows, it may not work on other operating systems. Consider using the os.path.join function instead, which automatically handles path separators for the current operating system.
The text was updated successfully, but these errors were encountered:
Currently, the script is only supported to run on Windows.
This issue is for making it compatible with Unix-based systems.
The script is using the
\\
separator to build file paths. While this works fine on Windows, it may not work on other operating systems. Consider using theos.path.join
function instead, which automatically handles path separators for the current operating system.The text was updated successfully, but these errors were encountered: