Abjad / abjad

Abjad is a Python API for building LilyPond files. Use Abjad to make PDFs of music notation.
https://abjad.github.io
GNU General Public License v3.0
234 stars 41 forks source link

Cleaned up abjad.TremoloContainer open brace formatting. #1585

Closed trevorbaca closed 2 months ago

trevorbaca commented 2 months ago

Example:

container = abjad.TremoloContainer(2, "c'16 e'")
string = abjad.lilypond(container)
print(string)

OLD:

\repeat tremolo 2 {
    c'16
    e'16
}

NEW:

\repeat tremolo 2
{
    c'16
    e'16
}