File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ def sync_api_client():
2828 client_id = None ,
2929 client_secret = None ,
3030 scopes = None ,
31+ api_key = None ,
3132 base_url = BASE_URL ,
3233 token_url = TOKEN_URL ,
3334 auth = None ,
@@ -41,6 +42,7 @@ def sync_api_client_with_auth():
4142 client_id = CLIENT_ID ,
4243 client_secret = CLIENT_SECRET ,
4344 scopes = SCOPES ,
45+ api_key = None ,
4446 base_url = BASE_URL ,
4547 token_url = TOKEN_URL ,
4648 ) as client :
@@ -53,6 +55,7 @@ async def async_api_client():
5355 client_id = None ,
5456 client_secret = None ,
5557 scopes = None ,
58+ api_key = None ,
5659 base_url = BASE_URL ,
5760 token_url = TOKEN_URL ,
5861 auth = None ,
@@ -66,6 +69,7 @@ async def async_api_client_with_auth():
6669 client_id = CLIENT_ID ,
6770 client_secret = CLIENT_SECRET ,
6871 scopes = SCOPES ,
72+ api_key = None ,
6973 base_url = BASE_URL ,
7074 token_url = TOKEN_URL ,
7175 ) as client :
You can’t perform that action at this time.
0 commit comments