Skip to content

Commit ed38195

Browse files
committed
Fix linting
1 parent f39484c commit ed38195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/authnz/custos_authnz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def refresh(self, trans, custos_authnz_token):
125125
return False
126126

127127
# Try to extract expiration date from the refresh token. If expired, do not refresh token.
128-
try:
128+
try:
129129
refresh_token_decoded = self._decode_token_no_signature(custos_authnz_token.refresh_token)
130130
# do not attempt to use refresh token that is already expired
131131
if int(refresh_token_decoded["exp"]) <= int(time.time()):

0 commit comments

Comments
 (0)