Skip to content

Commit

Permalink
Adding the missing super() for open_ai_client
Browse files Browse the repository at this point in the history
Signed-off-by: Sunish Sheth <sunishsheth2009@gmail.com>
  • Loading branch information
sunishsheth2009 committed Jan 14, 2025
1 parent ee136e2 commit 53a89f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricks/sdk/mixins/open_ai_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def http_request(self,
:returns: :class:`ExternalFunctionResponse`
"""

return super.http_request(connection_name=conn,
return super().http_request(connection_name=conn,
method=method,
path=path,
headers=js.dumps(headers),
Expand Down

0 comments on commit 53a89f4

Please sign in to comment.