Skip to content

Commit

Permalink
upath.local: fix WindowsUPath.path
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Mar 3, 2024
1 parent 9736412 commit 775b6fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions upath/implementations/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,6 @@ def _from_parsed_parts(cls, drv, root, parts):
_upath_init(obj)
return obj

@property
def path(self) -> str:
return WindowsPath.as_posix(self)
@property
def path(self) -> str:
return WindowsPath.as_posix(self)

0 comments on commit 775b6fe

Please sign in to comment.