Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matheeshapathirana committed Dec 22, 2023
1 parent 95425e6 commit 7b510b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@


def maximum():
COUNT = 0
count = 0
for root_dir, cur_dir, files in os.walk(r"json_cookies"):
COUNT += len(files)
return COUNT
count += len(files)
return count


progress = 0
Expand Down

0 comments on commit 7b510b1

Please sign in to comment.