From 010e31670b563c3312867acb8448280fa3918881 Mon Sep 17 00:00:00 2001 From: Burathar Date: Mon, 27 Jul 2020 22:06:23 +0200 Subject: [PATCH] remove trailing whitespace --- app/models/game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/game.py b/app/models/game.py index 2367b1b..ed433d2 100644 --- a/app/models/game.py +++ b/app/models/game.py @@ -32,7 +32,7 @@ class Game(db.Model): def last_player_locations(self, offset=None): # pylint: disable=not-an-iterable - return [location for location in + return [location for location in [player.last_location(offset=offset) for player in self.players if player.user.locations] if location is not None]