Skip to content

Commit 723b2f6

Browse files
committed
remove print()s
1 parent 10c77df commit 723b2f6

File tree

1 file changed

+0
-2
lines changed
  • pyscript-fsspec-client/pyscript_fsspec_client

1 file changed

+0
-2
lines changed

pyscript-fsspec-client/pyscript_fsspec_client/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def _call(self, path, method="GET", range=None, binary=False, data=0, json=0):
4848
return out
4949

5050
def ls(self, path, detail=True, **kwargs):
51-
print(path)
5251
path = self._strip_protocol(path)
5352
key, *path = path.split("/", 1)
5453
if key:
@@ -57,7 +56,6 @@ def ls(self, path, detail=True, **kwargs):
5756
else:
5857
raise ValueError
5958

60-
print(out)
6159
if detail:
6260
return out
6361
return sorted(_["name"] for _ in out)

0 commit comments

Comments
 (0)