Skip to content

Commit

Permalink
fs: expose kwargs in ls
Browse files Browse the repository at this point in the history
  • Loading branch information
pmrowla committed Jan 18, 2023
1 parent 30d3681 commit 8634792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dvc_objects/fs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def ls(self, path: AnyFSPath, detail: Literal[False]) -> Iterator[str]:
...

def ls(self, path, detail=False, **kwargs):
return self.fs.ls(path, detail=detail)
return self.fs.ls(path, detail=detail, **kwargs)

def find(
self,
Expand Down

0 comments on commit 8634792

Please sign in to comment.