From 6b0a83c1916c3ad6a533600c8178cf8795ab85a1 Mon Sep 17 00:00:00 2001 From: Burathar Date: Fri, 10 Jul 2020 23:43:54 +0200 Subject: [PATCH] remove linebreak --- app/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/models.py b/app/models.py index 4c73bcd..4e8f259 100644 --- a/app/models.py +++ b/app/models.py @@ -155,7 +155,6 @@ class Player(UserMixin, db.Model): return max((location for location in self.locations if location.timestamp > game_start and location.timestamp < game_end), key=lambda location: location.timestamp) - @staticmethod def delete_orphans(): Player.query.filter(~Player.player_games.any()).delete()