Skip to content

Commit

Permalink
lib: fix luacheck complaints
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Evans <[email protected]>
  • Loading branch information
kevans91 committed Feb 10, 2024
1 parent fb6427f commit 7c6c6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/orch/direct.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ direct.defaults = {
}

local direct_ctx = context:new()
function direct_ctx:execute(callback)
function direct_ctx.execute(_, callback)
callback()
end
function direct_ctx:fail(action, contents)
function direct_ctx:fail(_, contents)
if self.fail_handler then
self.fail_handler(contents)
end
Expand Down

0 comments on commit 7c6c6e8

Please sign in to comment.