You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
84
84
85
85
```python
86
-
fromctrlplane_api_clientimport Client
86
+
fromctrlplaneimport Client
87
87
88
88
deflog_request(request):
89
89
print(f"Request event hook: {request.method}{request.url} - Waiting for response")
@@ -104,7 +104,7 @@ You can even set the httpx client directly, but beware that this will override a
0 commit comments