Skip to content

Commit

Permalink
Merge pull request #147 from martindurant/small_fixes
Browse files Browse the repository at this point in the history
Fixes #145
  • Loading branch information
martindurant committed Apr 22, 2019
2 parents 523eb65 + 7eccbff commit d22f992
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 d22f992

Please sign in to comment.