From c10e01706af5b9cc9ce690072fbff16f396ef1d7 Mon Sep 17 00:00:00 2001 From: Alexandre CHAZAL Date: Mon, 6 Dec 2021 20:51:43 +0100 Subject: [PATCH] fix(config): removed object inheritance from base class --- app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config.py b/app/config.py index b8cbe3d..abece9c 100644 --- a/app/config.py +++ b/app/config.py @@ -4,7 +4,7 @@ A module that is used to store the current app's config import os -class Config(object): +class Config(): SECRET_KEY = os.environ.get("SECRET_KEY") if SECRET_KEY is None: raise Exception("[!!] No secret key was given")