Skip to content

Commit

Permalink
Make S3FileSystem.protocol type tuple[str, ...]
Browse files Browse the repository at this point in the history
  • Loading branch information
ap-- committed Oct 20, 2023
1 parent f3f17d2 commit 2c7b26b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion s3fs/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class S3FileSystem(AsyncFileSystem):
retries = 5
read_timeout = 15
default_block_size = 5 * 2**20
protocol = ["s3", "s3a"]
protocol = ("s3", "s3a")
_extra_tokenize_attributes = ("default_block_size",)

def __init__(
Expand Down

0 comments on commit 2c7b26b

Please sign in to comment.