Skip to content

Commit 5cac5cd

Browse files
committed
fix whitespace
1 parent 7cca9e5 commit 5cac5cd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ly/musicxml/lymus2musxml.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,22 +92,22 @@ def __init__(self):
9292

9393
def parse_text(self, ly_text, filename=None):
9494
"""Parse the LilyPond source specified as text.
95-
95+
9696
If you specify a filename, it can be used to resolve \\include commands
9797
correctly.
98-
98+
9999
"""
100100
doc = ly.document.Document(ly_text)
101101
doc.filename = filename
102102
self.parse_document(doc)
103103

104104
def parse_document(self, ly_doc, relative_first_pitch_absolute=False):
105105
"""Parse the LilyPond source specified as a ly.document document.
106-
106+
107107
If relative_first_pitch_absolute is set to True, the first pitch in a
108108
\relative expression without startpitch is considered to be absolute
109109
(LilyPond 2.18+ behaviour).
110-
110+
111111
"""
112112
# The document is copied and the copy is converted to absolute mode to
113113
# facilitate the export. The original document is unchanged.

0 commit comments

Comments
 (0)