diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index a4bbad7e76..370e8bc9b8 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -1039,8 +1039,11 @@ class AuthHandler(BaseHandler): """ Get the HTML for the SSO redirect confirmation page. - :param redirect_url: The URL to redirect to the SSO provider. - :return: The HTML to render. + Args: + redirect_url: The URL to redirect to the SSO provider. + + Returns: + The HTML to render. """ return self._sso_auth_confirm_template.render(redirect_url=redirect_url,)