Skip to content

Commit 7d8551a

Browse files
committed
flake8 compliance
1 parent 5f1b742 commit 7d8551a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/citrine/_session.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,9 @@ def _refresh_access_token(self) -> None:
131131
raise UnauthorizedRefreshToken()
132132
self.access_token = response.json()['access_token']
133133
self.access_token_expiration = datetime.utcfromtimestamp(
134-
jwt.decode(self.access_token, options={"verify_signature": False}, algorithms=["HS256"])['exp']
134+
jwt.decode(self.access_token,
135+
options={"verify_signature": False},
136+
algorithms=["HS256"])['exp']
135137
)
136138

137139
# Explicitly set an updated 'auth', so as to not rely on implicit cookie handling.

0 commit comments

Comments
 (0)