Skip to content

Commit e12aa75

Browse files
authored
Make WebHDFS ls() method compatible with superclass by supporting **kwargs (#1928)
1 parent 695f14e commit e12aa75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fsspec/implementations/webhdfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def info(self, path):
268268
info["name"] = path
269269
return self._process_info(info)
270270

271-
def ls(self, path, detail=False):
271+
def ls(self, path, detail=False, **kwargs):
272272
out = self._call("LISTSTATUS", path=path)
273273
infos = out.json()["FileStatuses"]["FileStatus"]
274274
for info in infos:

0 commit comments

Comments
 (0)