From 354f8bf8954e76faefbfa7750d2b3537ee7d3443 Mon Sep 17 00:00:00 2001 From: Patrick Di Fazio <50186694+BlessedRebuS@users.noreply.github.com> Date: Tue, 30 Dec 2025 00:24:36 +0100 Subject: [PATCH] Fix indentation for server_header in config.py --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index f3bf7f0..87fca1c 100644 --- a/src/config.py +++ b/src/config.py @@ -85,7 +85,7 @@ class Config: api_server_port=int(os.getenv('API_SERVER_PORT', 8080)), api_server_path=os.getenv('API_SERVER_PATH', '/api/v2/users'), probability_error_codes=int(os.getenv('PROBABILITY_ERROR_CODES', 0)), - server_header=os.getenv('SERVER_HEADER') + server_header=os.getenv('SERVER_HEADER'), database_path=os.getenv('DATABASE_PATH', 'data/krawl.db'), database_retention_days=int(os.getenv('DATABASE_RETENTION_DAYS', 30)), timezone=os.getenv('TIMEZONE') # If not set, will use system timezone