We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee136e2 commit 13e6625Copy full SHA for 13e6625
databricks/sdk/mixins/open_ai_client.py
@@ -82,10 +82,10 @@ def http_request(self,
82
:returns: :class:`ExternalFunctionResponse`
83
"""
84
85
- return super.http_request(connection_name=conn,
86
- method=method,
87
- path=path,
88
- headers=js.dumps(headers),
89
- json=js.dumps(json),
90
- params=js.dumps(params),
91
- )
+ return super().http_request(connection_name=conn,
+ method=method,
+ path=path,
+ headers=js.dumps(headers),
+ json=js.dumps(json),
+ params=js.dumps(params),
+ )
0 commit comments