From 983e65134c0fd686b7aa0c482f5669a743212212 Mon Sep 17 00:00:00 2001 From: MistEO Date: Fri, 9 Feb 2024 21:35:37 +0800 Subject: [PATCH] Update rank.py --- .github/rank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/rank.py b/.github/rank.py index 253cf9f..3b3b4d3 100644 --- a/.github/rank.py +++ b/.github/rank.py @@ -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))