From 14094a9f72697643abf4af440c7a480fc628995b Mon Sep 17 00:00:00 2001 From: Jack Rosenthal Date: Sun, 11 Feb 2024 23:57:59 -0700 Subject: [PATCH] Fix black issues --- algobowl/config/app_cfg.py | 1 + algobowl/lib/app_globals.py | 1 + algobowl/lib/helpers.py | 1 + algobowl/websetup/__init__.py | 1 + 4 files changed, 4 insertions(+) diff --git a/algobowl/config/app_cfg.py b/algobowl/config/app_cfg.py index 655ffeb..fe1d7e6 100644 --- a/algobowl/config/app_cfg.py +++ b/algobowl/config/app_cfg.py @@ -4,6 +4,7 @@ Configuration in this file is overridden by the paste config. """ + import tg from depot.manager import DepotManager from markupsafe import Markup diff --git a/algobowl/lib/app_globals.py b/algobowl/lib/app_globals.py index 90635ea..1a3600e 100644 --- a/algobowl/lib/app_globals.py +++ b/algobowl/lib/app_globals.py @@ -1,4 +1,5 @@ """The application's Globals object""" + import tg from cryptography.fernet import Fernet diff --git a/algobowl/lib/helpers.py b/algobowl/lib/helpers.py index 474e331..43d8389 100644 --- a/algobowl/lib/helpers.py +++ b/algobowl/lib/helpers.py @@ -4,6 +4,7 @@ This module is exposed in all templates under the name ``h``. """ + from datetime import date, datetime, time, timedelta import tg diff --git a/algobowl/websetup/__init__.py b/algobowl/websetup/__init__.py index 3c7e8e9..87e0378 100644 --- a/algobowl/websetup/__init__.py +++ b/algobowl/websetup/__init__.py @@ -1,4 +1,5 @@ """Setup the algobowl application""" + from algobowl.config.environment import load_environment from .bootstrap import bootstrap