We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Due to differences between NT Paths & POSIX Paths.
Since this works on windows, It won't follow to UNIX :
[ {"folder": "src"}, {"file": "src\\__init__.py"}, {"folder": "test"}, {"file": "test\\__init__.py"}, {"folder": "res"}, {"file": "README.md"}, {"file": "setup.py"}, {"file": "setup.cfg"}, {"file": "pyproject.toml"}, ]
If we wanna work it out on UNIX, It should be :
[ {"folder": "src"}, {"file": "src/__init__.py"}, {"folder": "test"}, {"file": "test/__init__.py"}, {"folder": "res"}, {"file": "README.md"}, {"file": "setup.py"}, {"file": "setup.cfg"}, {"file": "pyproject.toml"}, ]
But, of course It won't work on windows. So we have to either find a common ground or figure a new way.
The text was updated successfully, but these errors were encountered:
Hey.
I found a module that might really help us. It is called pathlib. https://docs.python.org/3/library/pathlib.html
I think I might try to refactor my branch to use path objects (when I have time). I'm thinking I can try to convert from JSON to a path straight away.
Sorry I haven't been contributing! I have a full time job right now (not is SWE) and so I do this in spare time or while procrastinating
Sorry, something went wrong.
Thanks, @augustus-thomas. I really did use the Pathlib Module. 😂
This issue is fixed as of 0.1.4
HushmKun
No branches or pull requests
Due to differences between NT Paths & POSIX Paths.
Since this works on windows, It won't follow to UNIX :
If we wanna work it out on UNIX, It should be :
But, of course It won't work on windows.
So we have to either find a common ground or figure a new way.
The text was updated successfully, but these errors were encountered: