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
Perhaps @n42 can explain the need for adding the .. in line 13 in wireviz.py? Isn't it enough to insert os.path.dirname(__file__) to find the WireViz modules?
Would the Pathlib equivalent then be Path(__file__).parent? Thanks :)
Remove all references to
os.path
in the code and replace with the equivalents usingPathlib
for consistency and robustness.This includes reducing all type hints from
(str, Path)
toPath
.The text was updated successfully, but these errors were encountered: