Skip to content

Commit

Permalink
Remove obsolete FIXMEs
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Kotrasinski <i.kotrasinsk@gmail.com>
  • Loading branch information
Igor Kotrasinski committed Nov 24, 2019
1 parent 0e7bd94 commit 27f8009
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions server/games/game_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ def score(self, army: int):
if len(scores) == 1:
return scores.popitem()[0]

# FIXME - we pass game id just for logging
self._logger.info("Conflicting scores (%s) reported for game %s",
scores, self._game_id)
score, _ = max(scores.items(), key=lambda kv: kv[::-1])
Expand All @@ -121,8 +120,6 @@ def victory_only_score(self, army: int):
else:
return 0

# FIXME: Should we gather such methods in one class, or place them near
# corresponding types?
@classmethod
async def from_db(cls, database, game_id):
results = cls(game_id)
Expand Down

0 comments on commit 27f8009

Please sign in to comment.