Skip to content

Commit

Permalink
lint: remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Erb3 committed Jul 9, 2024
1 parent 540834c commit 34d264a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local pp = require "cc.pretty"
local tArgs = { ... }
if #tArgs == 0 then
-- "set"
for n, sName in ipairs(settings.getNames()) do
for _, sName in ipairs(settings.getNames()) do
pp.print(pp.text(sName, colors.cyan) .. " is " .. pp.pretty(settings.get(sName)))
end
elseif #tArgs == 1 then
Expand Down

0 comments on commit 34d264a

Please sign in to comment.