Skip to content

Commit 74de35c

Browse files
committed
Don't sort listdir() values
1 parent 9c106fc commit 74de35c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fscacher/fastio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def worker():
6767
path = paths.pop()
6868
break
6969
try:
70-
for item in sorted(os.listdir(path)):
70+
for item in os.listdir(path):
7171
subpath = os.path.join(path, item)
7272
if os.path.isdir(subpath):
7373
with lock:

0 commit comments

Comments
 (0)