Skip to content

Commit 42807bf

Browse files
committed
ruffing
1 parent 0dc5662 commit 42807bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,12 +329,12 @@ def _extract_token_expiry_date(self, response_data: Mapping[str, Any]) -> Airbyt
329329
)
330330
if expires_in is not None:
331331
return self._parse_token_expiration_date(expires_in)
332-
332+
333333
# expires_in is None
334334
existing_expiry_date = self.get_token_expiry_date()
335335
if existing_expiry_date and not self.token_has_expired():
336336
return existing_expiry_date
337-
337+
338338
return self._default_token_expiry_date()
339339

340340
def _find_and_get_value_from_response(

0 commit comments

Comments
 (0)