Skip to content
New issue

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

outPath in ONC class constructor should accept both str and Path #12

Closed
kan-fu opened this issue Nov 20, 2023 · 0 comments · Fixed by #20
Closed

outPath in ONC class constructor should accept both str and Path #12

kan-fu opened this issue Nov 20, 2023 · 0 comments · Fixed by #20
Labels
enhancement New feature or request

Comments

@kan-fu
Copy link
Collaborator

kan-fu commented Nov 20, 2023

The idea occurred to me when I want to use a tmp_file fixture from pytest for outPath, but it only accepts str because it calls len to sanitize outPath. I have to convert it to str.

As illustrated in PEP519, the type of outPath should be typing.Union[str, bytes, os.PathLike]. For our use case, I think str | os.PathLike should be fine (with from __future__ import annotations of course).

Converting str to Path will eliminate the need for sanitizing. Both onc.py and _util.py need to be changed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

Successfully merging a pull request may close this issue.

1 participant