We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a9c814 commit 340a806Copy full SHA for 340a806
1 file changed
pkg/src/fileex/path.py
@@ -18,7 +18,7 @@ def is_path(path: Any) -> bool:
18
if not isinstance(path, str):
19
return False
20
try:
21
- return Path(path).resolve().exists()
+ return Path(path).exists()
22
except OSError:
23
# If the path cannot be resolved, it is not a valid path (e.g., too long)
24
0 commit comments