Skip to content

Commit 6ccbc91

Browse files
committed
fix none
1 parent 5600c45 commit 6ccbc91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ def iterdir(
14391439
if path_str.startswith("s3a://"):
14401440
path_str = path_str.replace("s3a://", "s3://")
14411441

1442-
fs, inner_path = fsspec.core.url_to_fs(path_str, **storage_options)
1442+
fs, inner_path = fsspec.core.url_to_fs(path_str, **(storage_options or {}))
14431443
if fs.isfile(inner_path):
14441444
path_obj = PurePosixPath(inner_path)
14451445
if _match_file(

0 commit comments

Comments
 (0)