Skip to content

Commit

Permalink
style: remove unused loop variable
Browse files Browse the repository at this point in the history
  • Loading branch information
scsole committed Oct 4, 2023
1 parent 56bc826 commit 7a4c64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function Functions.MakeExclusive(ctrls, allowDeselection)
y.Boolean = x == key
end
else
for x, y in pairs(ctrls) do
for _, y in pairs(ctrls) do
y.Boolean = false
end
end
Expand Down

0 comments on commit 7a4c64f

Please sign in to comment.