From 85f486087872cf389cb24611d7460ca5e9012907 Mon Sep 17 00:00:00 2001 From: Wang ChengMeng <79295644+cmw-creator@users.noreply.github.com> Date: Thu, 4 Jun 2026 12:10:36 +0800 Subject: [PATCH] Remove unused commented-out code from is_email_verified --- safety/auth/utils.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/safety/auth/utils.py b/safety/auth/utils.py index 53bba015..e9ea58ec 100644 --- a/safety/auth/utils.py +++ b/safety/auth/utils.py @@ -24,11 +24,6 @@ def is_email_verified(info: Dict[str, Any]) -> Optional[bool]: Returns: bool: True """ - # return info.get(CLAIM_EMAIL_VERIFIED_API) or info.get( - # CLAIM_EMAIL_VERIFIED_AUTH_SERVER - # ) - - # Always return True to avoid email verification return True