File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
airbyte_cdk/sources/declarative/auth Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 2222
2323logger = logging .getLogger ("airbyte" )
2424
25+
2526@dataclass
2627class 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 :
You can’t perform that action at this time.
0 commit comments