diff --git a/authentik/root/settings.py b/authentik/root/settings.py index 4c706f2c7..1ceb77add 100644 --- a/authentik/root/settings.py +++ b/authentik/root/settings.py @@ -56,7 +56,9 @@ MEDIA_ROOT = BASE_DIR + "/media" DEBUG = CONFIG.y_bool("debug") SECRET_KEY = CONFIG.y("secret_key") if DEBUG: - SECRET_KEY = "9$@r!d^1^jrn#fk#1#@ks#9&i$^s#1)_13%$rwjrhd=e8jfi_s" # noqa Debug # nosec + SECRET_KEY = ( + "9$@r!d^1^jrn#fk#1#@ks#9&i$^s#1)_13%$rwjrhd=e8jfi_s" # noqa Debug # nosec + ) INTERNAL_IPS = ["127.0.0.1"] ALLOWED_HOSTS = ["*"]