fixed indent issue

This commit is contained in:
PanFritz
2015-06-15 22:40:04 +02:00
parent caec2fd0d5
commit 98ae25df50

View File

@@ -36,7 +36,7 @@ queue = []
def get_best(players):
highest = 2147483647
player_out = players[0]
for player in players:
for player in players:
if player["deaths"] < highest:
highest = player["deaths"]
player_out = player