From 018cd02b247d9a8e15e08165e1026e81f093050a Mon Sep 17 00:00:00 2001 From: Patrick Cloke Date: Tue, 31 Mar 2020 10:37:28 -0400 Subject: [PATCH] Fix docstring formatting. --- synapse/handlers/auth.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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,)