Skip to content

Commit b42e411

Browse files
committed
Sort also the directory name for proper ordering between css and js plugin folders
1 parent 6290c4c commit b42e411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ def _walk_assets_directory(self):
10011001
ignore_str = self.config.assets_ignore
10021002
ignore_filter = re.compile(ignore_str) if ignore_str else None
10031003

1004-
for current, _, files in os.walk(walk_dir):
1004+
for current, _, files in sorted(os.walk(walk_dir)):
10051005
if current == walk_dir:
10061006
base = ""
10071007
else:

0 commit comments

Comments
 (0)