From c7647705bc491386c98c4a5c7bd5993a8c861a31 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Thu, 6 Oct 2022 18:46:45 +0200 Subject: [PATCH] :bug: Fixed recaptcha-env-variable --- classquiz/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classquiz/config.py b/classquiz/config.py index 71f28ef..2c28756 100644 --- a/classquiz/config.py +++ b/classquiz/config.py @@ -23,7 +23,7 @@ class Settings(BaseSettings): skip_email_verification: bool = False db_url: str | PostgresDsn = "postgresql://postgres:mysecretpassword@localhost:5432/classquiz" hcaptcha_key: str | None = None - recpatcha_key: str | None = None + recaptcha_key: str | None = None mail_address: str mail_password: str mail_username: str