Skip to content

Commit

Permalink
Fixes #145
Browse files Browse the repository at this point in the history
Fixes #146
  • Loading branch information
Martin Durant committed Apr 22, 2019
1 parent 0847583 commit 7eccbff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion gcsfs/dask_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def isfile(self, path):
except OSError:
return False

def walk(self, path, refresh=False):
def walk(self, path, refresh=False, maxdepth=5):
"""
Directory tree generator, like os.walk
Expand Down
1 change: 0 additions & 1 deletion gcsfs/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ def __getitem__(self, key):
return self.gcs.cat(key)
except (IOError, OSError):
raise KeyError(key)
return result

def __setitem__(self, key, value):
key = self._key_to_str(key)
Expand Down

0 comments on commit 7eccbff

Please sign in to comment.