Skip to content

Commit

Permalink
fs: normpath: use posixpath.normapth
Browse files Browse the repository at this point in the history
Leftover from #479
  • Loading branch information
efiop committed Dec 15, 2023
1 parent 70b5098 commit 9bb4236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvc_data/fs.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def getcwd(self) -> str:
return self.root_marker

def normpath(self, path: str) -> str:
return path
return posixpath.normpath(path)

def abspath(self, path: str) -> str:
if not posixpath.isabs(path):
Expand Down

0 comments on commit 9bb4236

Please sign in to comment.