Skip to content

Commit 53a89f4

Browse files
Adding the missing super() for open_ai_client
Signed-off-by: Sunish Sheth <[email protected]>
1 parent ee136e2 commit 53a89f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databricks/sdk/mixins/open_ai_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def http_request(self,
8282
:returns: :class:`ExternalFunctionResponse`
8383
"""
8484

85-
return super.http_request(connection_name=conn,
85+
return super().http_request(connection_name=conn,
8686
method=method,
8787
path=path,
8888
headers=js.dumps(headers),

0 commit comments

Comments
 (0)