From 30312e37606abfb86d1f0579303cc4322c72099a Mon Sep 17 00:00:00 2001 From: bboerni2 <93215657+bboerni2@users.noreply.github.com> Date: Tue, 23 Sep 2025 13:00:55 +0200 Subject: [PATCH] Add import for extra_local configuration in extra.py --- configuration/extra.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configuration/extra.py b/configuration/extra.py index 8bd1337..a7de9c0 100644 --- a/configuration/extra.py +++ b/configuration/extra.py @@ -47,3 +47,8 @@ # from datetime import datetime # now = datetime.now().strftime("%d/%m/%Y %H:%M:%S") # BANNER_TOP = f'This instance started on {now}.' + +try: + from .extra_local import * +except ImportError: + pass