summaryrefslogtreecommitdiff
path: root/src/itsdangerous/timed.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/itsdangerous/timed.py')
-rw-r--r--src/itsdangerous/timed.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/itsdangerous/timed.py b/src/itsdangerous/timed.py
index 8141a74..b106c5a 100644
--- a/src/itsdangerous/timed.py
+++ b/src/itsdangerous/timed.py
@@ -127,9 +127,7 @@ class TimedSerializer(Serializer):
last_exception = None
for signer in self.iter_unsigners(salt):
try:
- base64d, timestamp = signer.unsign(
- s, max_age, return_timestamp=True
- )
+ base64d, timestamp = signer.unsign(s, max_age, return_timestamp=True)
payload = self.load_payload(base64d)
if return_timestamp:
return payload, timestamp