We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f1b742 commit 7d8551aCopy full SHA for 7d8551a
src/citrine/_session.py
@@ -131,7 +131,9 @@ def _refresh_access_token(self) -> None:
131
raise UnauthorizedRefreshToken()
132
self.access_token = response.json()['access_token']
133
self.access_token_expiration = datetime.utcfromtimestamp(
134
- jwt.decode(self.access_token, options={"verify_signature": False}, algorithms=["HS256"])['exp']
+ jwt.decode(self.access_token,
135
+ options={"verify_signature": False},
136
+ algorithms=["HS256"])['exp']
137
)
138
139
# Explicitly set an updated 'auth', so as to not rely on implicit cookie handling.
0 commit comments