Reformat with Black 2023 formatting changes

This commit is contained in:
Jakub Kuczys
2023-04-22 21:43:20 +02:00
parent 6cef8408e8
commit 226d8d734d
7 changed files with 2 additions and 9 deletions

View File

@@ -312,7 +312,7 @@ class TriviaSession:
top_score = self.scores.most_common(1)[0][1]
winners = []
num_humans = 0
for (player, score) in self.scores.items():
for player, score in self.scores.items():
if not player.bot:
if score == top_score:
winners.append(player)