From b7bd032e074577a13399bc65195beac5f18d5c0e Mon Sep 17 00:00:00 2001 From: c0de Date: Fri, 11 Nov 2022 20:07:23 -0600 Subject: [PATCH] format with black --- GhostBallBot/game/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GhostBallBot/game/base.py b/GhostBallBot/game/base.py index 0c49028..a57ccbe 100644 --- a/GhostBallBot/game/base.py +++ b/GhostBallBot/game/base.py @@ -6,6 +6,7 @@ from database.models import database, GameModel as Game + class BaseGameManager: """Base Game Manager for each Game Manager class to inherit""" @@ -37,4 +38,4 @@ class BaseGameManager: Automagically close the database when this class has ended execution """ - database.close() \ No newline at end of file + database.close()