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

Commit dc39660

Browse files
committed
pep8 fix
1 parent 714bf32 commit dc39660

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rauth/service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ def get_session(self, token=None, signature=None):
185185
signature or self.signature_obj,
186186
service=self)
187187
else: # pragma: no cover
188+
signature = signature or self.signature_obj
188189
session = self.session_obj(self.consumer_key,
189190
self.consumer_secret,
190-
signature=signature
191-
or self.signature_obj,
191+
signature=signature,
192192
service=self)
193193
return session
194194

0 commit comments

Comments
 (0)