1
0
mirror of synced 2024-11-27 22:40:49 +01:00

parsers.py: Fix typo in error message

This commit is contained in:
Viv 2024-02-10 18:13:55 -05:00
parent 334a70e2b1
commit 0a77dcef1d

View File

@ -348,7 +348,7 @@ def parse_tja_course_data(data: List[str]) -> Dict[str, List[TJAMeasure]]:
raise ValueError( raise ValueError(
"Branches do not have the same number of measures. (This " "Branches do not have the same number of measures. (This "
"check was performed prior to splitting up the measures due " "check was performed prior to splitting up the measures due "
"to mid-measure commands. Please check the number of ',' you" "to mid-measure commands. Please check the number of ',' you "
"have in each branch.)" "have in each branch.)"
) )