Fix docstring formatting.

pull/7102/head
Patrick Cloke 2020-03-31 10:37:28 -04:00
parent d1df905f85
commit 018cd02b24
1 changed files with 5 additions and 2 deletions

View File

@ -1039,8 +1039,11 @@ class AuthHandler(BaseHandler):
""" """
Get the HTML for the SSO redirect confirmation page. Get the HTML for the SSO redirect confirmation page.
:param redirect_url: The URL to redirect to the SSO provider. Args:
:return: The HTML to render. 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,) return self._sso_auth_confirm_template.render(redirect_url=redirect_url,)