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
I think we recently merged #921 which allows for pathlib.Path objects. I think what we need to do now, is invert that and do the following.
ifisinstance(ipc_path, str):
ipc_path=pathlib.Path(ipc_path)
elifnotisinstance(ipc_path, pathlib.Path):
raiseTypeError("helpful error message about what types are accepted")
ipc_path_str=ipc_path.expanduser().resolve()
This should handle conversion to an absolute path as well as handling ~.
What was wrong?
In linux, the home directory path shortcut
~
doesn't workHow can it be fixed?
The text was updated successfully, but these errors were encountered: