Skip to content

Commit 4e0ebc4

Browse files
author
octavia-squidington-iii
committed
Auto-fix lint and format issues
1 parent 4b6c856 commit 4e0ebc4

File tree

1 file changed

+4
-1
lines changed
  • airbyte_cdk/sources/declarative/auth

1 file changed

+4
-1
lines changed

airbyte_cdk/sources/declarative/auth/oauth.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
logger = logging.getLogger("airbyte")
2424

25+
2526
@dataclass
2627
class DeclarativeOauth2Authenticator(AbstractOauth2Authenticator, DeclarativeAuthenticator):
2728
"""
@@ -204,7 +205,9 @@ def get_client_secret(self) -> str:
204205
)
205206
if not client_secret:
206207
# We've seen some APIs allowing empty client_secret so we will only log here
207-
logger.warning("OAuthAuthenticator was unable to evaluate client_secret parameter hence it'll be empty")
208+
logger.warning(
209+
"OAuthAuthenticator was unable to evaluate client_secret parameter hence it'll be empty"
210+
)
208211
return client_secret # type: ignore # value will be returned as a string, or an error will be raised
209212

210213
def get_refresh_token_name(self) -> str:

0 commit comments

Comments
 (0)