From ca9a4a697412e307754f05bd73a04f2cb4986829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giovanni=20Lagan=C3=A0?= Date: Sat, 2 Nov 2024 09:55:39 +0100 Subject: [PATCH] fix: specific condition when switching conf --- conf/switch.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/conf/switch.py b/conf/switch.py index dec2bf9..db3b6c9 100644 --- a/conf/switch.py +++ b/conf/switch.py @@ -4,5 +4,6 @@ if env == 'prod': from conf.prod import * -else: - from conf.local import * \ No newline at end of file +elif env == 'local': + from conf.local import * + \ No newline at end of file