Skip to content

Commit

Permalink
Fixed bug in parameter name to _fix_gcsfs_storage (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwnoble authored Jan 13, 2025
1 parent a7f84c3 commit dee15c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simple/util/filesystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(self, path: str, create_if_missing: bool, treat_as_file: bool):
self.fs = open_fs(f"{self.root_path}?strict=False",
create=create_if_missing)
# Fix GCS storage if needed.
_fix_gcsfs_storage(gcs_fs=self.fs)
_fix_gcsfs_storage(self.fs)
else:
self.fs = open_fs(self.root_path, create=create_if_missing)

Expand Down

0 comments on commit dee15c8

Please sign in to comment.