Skip to content

Commit

Permalink
fixup! make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
noaccOS committed May 1, 2024
1 parent 1741552 commit 3c719c8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/azurex/blob.ex
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,13 @@ defmodule Azurex.Blob do
end
end

defp blob_request(name, overrides \\ [], method, params, headers \\ [], options \\ []) do
defp blob_request(name, overrides, method, params) do
connection_params = Config.get_connection_params(overrides)

%HTTPoison.Request{
method: method,
url: get_url(name, connection_params),
params: params,
headers: headers,
options: options
params: params
}
|> SharedKey.sign(
storage_account_name: Config.storage_account_name(connection_params),
Expand Down

0 comments on commit 3c719c8

Please sign in to comment.