We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8722684 commit de73472Copy full SHA for de73472
fsspec/implementations/memory.py
@@ -46,7 +46,7 @@ def ls(self, path, detail=False, **kwargs):
46
paths = set()
47
starter = path + "/"
48
out = []
49
- for p2 in self.store:
+ for p2 in tuple(self.store):
50
if p2.startswith(starter):
51
if "/" not in p2[len(starter) :]:
52
# exact child
0 commit comments