Skip to content

Commit

Permalink
Update rank.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO authored Feb 9, 2024
1 parent ae1679a commit 0016d44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/rank.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from scoring import file_score, best_file_score
from scoring import file_score, best_file_score, filter_ext
from pathlib import Path

if __name__ == '__main__':

score_list = []

filter_ext = [".md", ".txt", ".png", ".jpg", ".gif", ".bmp"]
for player in Path('.').glob('*'):
if player.is_file():
continue
Expand Down

0 comments on commit 0016d44

Please sign in to comment.