From 95c9f654e117321a69863249dc8e0684f0cb1e4b Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Wed, 22 Jul 2026 03:53:27 +0200 Subject: [PATCH] chore(scheduling): document password flag false positive --- src/govoplan_scheduling/backend/service.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/govoplan_scheduling/backend/service.py b/src/govoplan_scheduling/backend/service.py index ff27389..19b8530 100644 --- a/src/govoplan_scheduling/backend/service.py +++ b/src/govoplan_scheduling/backend/service.py @@ -1895,7 +1895,8 @@ def _public_scheduling_participation_response( ), "cancellation_notice_only": True, "participant_email_required": False, - "anonymous_password_required": False, + # Boolean policy projection, not a password or credential value. + "anonymous_password_required": False, # nosec B105 "single_choice": False, "allow_maybe": False, "allow_comments": False,