- lint fixes
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-03-22 22:10:56 +01:00
parent 6ee874655e
commit 7c3a011ffc

View File

@@ -1,5 +1,3 @@
local unpack = unpack or table.unpack -- luacheck: ignore
local musicator_markov_model = {
model = {
["...|..."] = {
@@ -680,7 +678,7 @@ local function musicator_generate_sequence(model_data, length)
-- generation loop
while musicator_count_notes(seq) < length do
local current_key = table.concat({unpack(seq, #seq - order + 1, #seq)}, "|")
local current_key = table.concat({table.unpack(seq, #seq - order + 1, #seq)}, "|")
local chosen = "..."