Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Commit

Permalink
Summary generator script updated
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoborbadev committed Feb 12, 2024
1 parent b310508 commit 2cc061e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Script.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# IMPORTANT: This script only works in linux systems
if __name__ == "__main__":
# Walk through all directories and files
for root, dirs, files in os.walk('.'):
for root, dirs, files in os.walk('.', topdown=True):
# Ignore hidden directories
if root.startswith('./.'):
continue
Expand Down

0 comments on commit 2cc061e

Please sign in to comment.