Skip to content

Commit

Permalink
remove timezone from config init
Browse files Browse the repository at this point in the history
  • Loading branch information
gantoine committed Sep 9, 2024
1 parent 8fc25cd commit 0b2a822
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def str_to_bool(value: str) -> bool:
DEV_HOST: Final = os.environ.get("DEV_HOST", "127.0.0.1")
DEV_PORT: Final = int(os.environ.get("DEV_PORT", "5000"))
GUNICORN_WORKERS: Final = int(os.environ.get("GUNICORN_WORKERS", 2))
TIMEZONE: Final = os.environ.get("TZ", "Etc/UTC")

# PATHS
ROMM_BASE_PATH: Final = os.environ.get("ROMM_BASE_PATH", "/romm")
Expand Down

0 comments on commit 0b2a822

Please sign in to comment.