From 23bed48c8ce2fecd7bccd4589a0f1b245d84f7a2 Mon Sep 17 00:00:00 2001 From: I-Al-Istannen Date: Tue, 21 Apr 2020 13:30:42 +0200 Subject: [PATCH] Satisfy autopep8 --- PFERD/ilias/authenticators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PFERD/ilias/authenticators.py b/PFERD/ilias/authenticators.py index 08c6922..5443d99 100644 --- a/PFERD/ilias/authenticators.py +++ b/PFERD/ilias/authenticators.py @@ -90,7 +90,7 @@ class KitShibbolethAuthenticator(IliasAuthenticator): relay_state = soup.find("input", {"name": "RelayState"}) saml_response = soup.find("input", {"name": "SAMLResponse"}) url = "https://ilias.studium.kit.edu/Shibboleth.sso/SAML2/POST" - data = { # using the info obtained in the while loop above + data = { # using the info obtained in the while loop above "RelayState": relay_state["value"], "SAMLResponse": saml_response["value"], }