Skip to content

Commit 7f05353

Browse files
committed
fix inadvertent tuple
1 parent 93e4534 commit 7f05353

File tree

1 file changed

+1
-1
lines changed
  • airbyte_cdk/sources/streams/http/requests_native_auth

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def __init__(
164164
self._client_id = (
165165
client_id
166166
if client_id is not None
167-
else dpath.get(connector_config, ("credentials", "client_id")), # type: ignore [arg-type]
167+
else dpath.get(connector_config, ("credentials", "client_id")) # type: ignore [arg-type]
168168
)
169169
self._client_secret = (
170170
client_secret

0 commit comments

Comments
 (0)