Skip to content

Commit

Permalink
fix semicolon (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
svilupp authored Nov 5, 2023
1 parent c73fb71 commit 9ddc63c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenAI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ end

function request_body(url, method; input, headers, kwargs...)
input = input === nothing ? [] : input
resp = HTTP.request(method, url, body=input, headers=headers, kwargs...)
resp = HTTP.request(method, url; body=input, headers=headers, kwargs...)
return resp, resp.body
end

Expand Down

0 comments on commit 9ddc63c

Please sign in to comment.