From 60244115eed6bc4da67c3ace94e2cd428ecdebf1 Mon Sep 17 00:00:00 2001 From: Greg Griffin Date: Sun, 13 Oct 2024 19:52:33 -0400 Subject: [PATCH] fix: shorten docstring to be below max line length --- src/keycloak/keycloak_openid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keycloak/keycloak_openid.py b/src/keycloak/keycloak_openid.py index 7e68cab..ae9cd82 100644 --- a/src/keycloak/keycloak_openid.py +++ b/src/keycloak/keycloak_openid.py @@ -266,7 +266,7 @@ def auth_url(self, redirect_uri, scope="email", state="", nonce=""): :type scope: str :param state: State will be returned to the redirect_uri :type state: str - :param nonce: Associates a Client session with an ID Token, and used to mitigate replay attacks + :param nonce: Associates a Client session with an ID Token to mitigate replay attacks :type nonce: str :returns: Authorization URL Full Build :rtype: str @@ -915,7 +915,7 @@ async def a_auth_url(self, redirect_uri, scope="email", state="", nonce=""): :type scope: str :param state: State will be returned to the redirect_uri :type state: str - :param nonce: Associates a Client session with an ID Token, and used to mitigate replay attacks + :param nonce: Associates a Client session with an ID Token to mitigate replay attacks :type nonce: str :returns: Authorization URL Full Build :rtype: str