summaryrefslogtreecommitdiff
path: root/snowbrawl.py
diff options
context:
space:
mode:
authorPanFritz <redstonenoobpan@gmail.com>2015-06-15 22:40:04 +0200
committerPanFritz <redstonenoobpan@gmail.com>2015-06-15 22:40:04 +0200
commit98ae25df50ed45a570f39a02b09d732feca80567 (patch)
tree60d34e223fc278874ae0690d0dd6b772787a9284 /snowbrawl.py
parentcaec2fd0d553490ddb7df796c38b4f6faf54c709 (diff)
fixed indent issue
Diffstat (limited to 'snowbrawl.py')
-rw-r--r--snowbrawl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/snowbrawl.py b/snowbrawl.py
index c3cf500..97eafaa 100644
--- a/snowbrawl.py
+++ b/snowbrawl.py
@@ -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