From b34a8991178b7c005b3d1d302920e10a5b59bf9c Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Fri, 20 Jun 2025 18:40:15 +0200 Subject: [PATCH] [REMOVE] Unused constants --- CHANGELOG.md | 4 ++++ sovtimer/constants.py | 8 -------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beedf2fe..8d6e3128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,10 @@ Section Order: - Improved explanatory text in the campaign table a bit +### Removed + +- Unused constants + ## [2.4.2] - 2025-06-16 ### Fixed diff --git a/sovtimer/constants.py b/sovtimer/constants.py index ab1ed61d..a379c617 100644 --- a/sovtimer/constants.py +++ b/sovtimer/constants.py @@ -2,9 +2,6 @@ Constants we use throughout the app """ -# Standard Library -import os - # Alliance Auth from esi import __version__ as esi_version @@ -18,10 +15,5 @@ GITHUB_URL = f"https://github.com/ppfeufer/{APP_NAME}" USER_AGENT = f"{APP_NAME_VERBOSE_USERAGENT}/{__version__} (+{GITHUB_URL}) Django-ESI/{esi_version}" -# aa-sov-timer/sovtimer -APP_BASE_DIR = os.path.join(os.path.dirname(__file__)) -# aa-sov-timer/sovtimer/static/sovtimer -APP_STATIC_DIR = os.path.join(APP_BASE_DIR, "static", PACKAGE_NAME) - # All internal URLs need to start with this prefix INTERNAL_URL_PREFIX = "-"