Skip to content

Commit

Permalink
Sort the files to get a predictable structure
Browse files Browse the repository at this point in the history
  • Loading branch information
p3lim committed Jul 23, 2024
1 parent ade3146 commit 86dacc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
numFiles = 0

print(f'Parsing Lua files for documentation')
for file in glob('**/*.lua', recursive=True):
for file in sorted(glob('**/*.lua', recursive=True)):
numFiles += 1

# iterates recursively for every Lua file, then open file for reading
Expand Down

0 comments on commit 86dacc3

Please sign in to comment.