From 6775aa00d8427a54cbde0a01e05a22544d9449ac Mon Sep 17 00:00:00 2001 From: Daniel Mursa Date: Thu, 14 Nov 2024 16:50:34 +0100 Subject: [PATCH] [#474] Fix order --- src/objects/conf/production.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/objects/conf/production.py b/src/objects/conf/production.py index 004fbe7d..8b9e0d3c 100644 --- a/src/objects/conf/production.py +++ b/src/objects/conf/production.py @@ -1,11 +1,10 @@ import os -from .api import API_VERSION os.environ.setdefault("ENVIRONMENT", "production") -os.environ.setdefault("RELEASE", API_VERSION) from .base import * # noqa isort:skip +os.environ.setdefault("RELEASE", API_VERSION) # # Standard Django settings. #