Satisfy autopep8

This commit is contained in:
I-Al-Istannen 2020-04-21 13:30:42 +02:00
parent 0926d33798
commit 23bed48c8c

View File

@ -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"],
}