Skip to content

Commit 61859ef

Browse files
authored
Merge pull request #212 from clerk/tom/user-4759-fix-clerk-sdk-python-generate-action-issue
fix: `no-else-return` linting issue
2 parents 33865d7 + bd1fc50 commit 61859ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/clerk_backend_api/security/authenticaterequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _build_verify_token_options(options: AuthenticateRequestOptions, session_tok
8888
clock_skew_in_ms=options.clock_skew_in_ms,
8989
jwt_key=options.jwt_key,
9090
)
91-
elif options.secret_key:
91+
if options.secret_key:
9292
return VerifyTokenOptions(
9393
audience=options.audience,
9494
authorized_parties=options.authorized_parties,

0 commit comments

Comments
 (0)