From 775b6fea15106b8a29126ab9a85e094018cfce59 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Sun, 3 Mar 2024 23:03:16 +0100 Subject: [PATCH] upath.local: fix WindowsUPath.path --- upath/implementations/local.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/upath/implementations/local.py b/upath/implementations/local.py index 63f17ad7..e0fba453 100644 --- a/upath/implementations/local.py +++ b/upath/implementations/local.py @@ -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)