Skip to content

Commit b8c8d23

Browse files
committed
chore: make stylua happy
1 parent 40634fa commit b8c8d23

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

lua/plenary/curl.lua

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,15 @@ request = function(specs)
245245
args = args,
246246
on_exit = function(j, code)
247247
if code ~= 0 then
248-
error(string.format(
249-
"%s %s - curl error exit_code=%s stderr=%s",
250-
opts.method,
251-
opts.url,
252-
code,
253-
vim.inspect(j:stderr_result())
254-
))
248+
error(
249+
string.format(
250+
"%s %s - curl error exit_code=%s stderr=%s",
251+
opts.method,
252+
opts.url,
253+
code,
254+
vim.inspect(j:stderr_result())
255+
)
256+
)
255257
end
256258
local output = parse.response(j:result(), opts.dump[2], code)
257259
if opts.callback then

0 commit comments

Comments
 (0)