We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If we set only a single time signature in MeasurewiseQSchema using the keyword time_signature, then the time_signature would display properly.
MeasurewiseQSchema
time_signature
>>> q_schema = abjadext.nauert.MeasurewiseQSchema( ... time_signature=abjad.TimeSignature((3, 4)) ... ) >>> q_schema.time_signature TimeSignature((3, 4))
However, if we are using the non-sequential time-step setting via a dictionary, then it would only return the default time signature (4, 4).
>>> a = {"time_signature": abjad.TimeSignature((7, 32))} >>> b = {"time_signature": abjad.TimeSignature((3, 4))} >>> c = {"time_signature": abjad.TimeSignature((5, 8))} >>> settings = { ... 2: a, ... 4: b, ... 6: c, ... } >>> q_schema = abjadext.nauert.MeasurewiseQSchema(settings) >>> q_schema.time_signature TimeSignature((4, 4))
Maybe this behavior makes sense, maybe not.
The text was updated successfully, but these errors were encountered:
nivlekp
No branches or pull requests
If we set only a single time signature in
MeasurewiseQSchema
using the keywordtime_signature
, then thetime_signature
would display properly.However, if we are using the non-sequential time-step setting via a dictionary, then it would only return the default time signature (4, 4).
Maybe this behavior makes sense, maybe not.
The text was updated successfully, but these errors were encountered: