trevorbaca / baca

Trevor Bača's Abjad library.
8 stars 3 forks source link

Fix list-specified measures in new() #19

Open trevorbaca opened 5 years ago

trevorbaca commented 5 years ago

Fix list-specified measures in baca.new().

Consider:

        baca.new(
            stirrings_still.pickets(4, 2),
            measures=[21, 23],
            )

Currently interprets (wrongly) equal to:

        baca.new(
            stirrings_still.pickets(4, 2),
            measures=(21, 23),
            )