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 16b55ce commit 983e651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/rank.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
if player.stem.startswith('.'):
continue

result = best_file_score([x for x in player.glob('**/*') if x.is_file()])
result = best_file_score([x for x in player.glob('**/*') if x.is_file() and x.suffix != ".md"])
if result:
path, score = result
score_list.append((player.stem, path, score))
Expand Down

0 comments on commit 983e651

Please sign in to comment.