fix(config): removed object inheritance from base class
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user