From 341be37fd3027dee39101eb80280cb1213254db0 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 14 Jan 2025 15:50:05 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(backend)=20remove=20a=20non-existi?= =?UTF-8?q?ng=20field=20on=20BooleanValue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I used a LLM to review my code, it introduced an hallucinated field. Remove it. --- src/backend/meet/settings.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/backend/meet/settings.py b/src/backend/meet/settings.py index 0c81f945..a39af6ce 100755 --- a/src/backend/meet/settings.py +++ b/src/backend/meet/settings.py @@ -459,13 +459,9 @@ class Base(Configuration): # Marketing and communication settings SIGNUP_NEW_USER_TO_MARKETING_EMAIL = values.BooleanValue( - False, + False, # When enabled, new users are automatically added to mailing list. environ_name="SIGNUP_NEW_USER_TO_MARKETING_EMAIL", environ_prefix=None, - help_text=( - "When enabled, new users are automatically added to mailing list " - "for product updates, marketing communications, and customized emails. " - ), ) MARKETING_SERVICE_CLASS = values.Value( "core.services.marketing_service.BrevoMarketingService",