Skip to content

Commit b641a6b

Browse files
committed
Replace tabs and trim whitespace.
1 parent f8665d6 commit b641a6b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sc2reader/replay.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,11 @@ def load_players(self):
228228
player.team = self.team[team_number]
229229

230230
# Do basic win/loss processing from details data
231-
if pdata.result == 1:
232-
player.team.result = "Win"
233-
self.winner_known = True
234-
elif pdata.result == 2:
235-
player.team.result = "Loss"
231+
if pdata.result == 1:
232+
player.team.result = "Win"
233+
self.winner_known = True
234+
elif pdata.result == 2:
235+
player.team.result = "Loss"
236236

237237
player.pick_race = attributes['Race']
238238
player.play_race = LOCALIZED_RACES.get(pdata.race, pdata.race)

0 commit comments

Comments
 (0)