diff --git a/core/config.py b/core/config.py index 160a815..93be4ff 100644 --- a/core/config.py +++ b/core/config.py @@ -261,7 +261,7 @@ class Produce(Settings): MDB_DB: str = 'xdata' -settings = Debug() - -if sys.platform != 'win32': +if sys.platform == 'linux': settings = Produce() +else: + settings = Debug()