Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit c650a60

Browse files
committed
pep8 fix
1 parent 737ab82 commit c650a60

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

rauth/oauth.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ def _normalize_request_parameters(self, oauth_params, req_kwargs):
9898
all_normalized.sort()
9999

100100
# finally encode the params as a string
101-
return urlencode(all_normalized, True).replace('+', '%20').replace('%7E', '~')
101+
return urlencode(all_normalized, True)\
102+
.replace('+', '%20')\
103+
.replace('%7E', '~')
102104

103105

104106
class HmacSha1Signature(SignatureMethod):

0 commit comments

Comments
 (0)