Skip to content

Commit 86aaca4

Browse files
committed
Fixed pep8
1 parent 15846bd commit 86aaca4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/onelogin/saml2/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,5 +1151,5 @@ def extract_raw_query_parameter(query_string, parameter, default=''):
11511151

11521152
@staticmethod
11531153
def case_sensitive_urlencode(to_encode, lowercase=False):
1154-
encoded=quote_plus(to_encode)
1154+
encoded = quote_plus(to_encode)
11551155
return re.sub(r"%[A-F0-9]{2}", lambda m: m.group(0).lower(), encoded) if lowercase else encoded

0 commit comments

Comments
 (0)