Skip to content

Commit 8b5cdd4

Browse files
committed
debug for new fsspec
1 parent 91a7956 commit 8b5cdd4

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
@@ -1402,7 +1402,7 @@ def iterdir(
14021402
return
14031403

14041404
for file in fs.ls(path_without_scheme, detail=True):
1405-
if fs.isfile(file):
1405+
if file["type"] == "file":
14061406
path_obj = PurePosixPath(file["name"])
14071407
if _match_file(
14081408
path_obj,

0 commit comments

Comments
 (0)