Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
liebharc committed Jan 5, 2024
1 parent df9981c commit c8e5c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oemer/symbol_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,10 +406,10 @@ def gen_sfns(bboxes: List[BBox], labels: List[str]) -> List[Sfn]:
if ss.note_id is not None:
note = notes[ss.note_id]
if ss.track != note.track:
print(f"Track of sfn and note not mismatch: {ss}\n{note}")
print(f"Track of sfn and note mismatch: {ss}\n{note}")
notes[ss.note_id].invalid = True
elif ss.group != note.group:
print(f"Group of sfn and note not mismatch: {ss}\n{note}")
print(f"Group of sfn and note mismatch: {ss}\n{note}")
notes[ss.note_id].invalid = True
else:
notes[ss.note_id].sfn = ss.label
Expand Down

0 comments on commit c8e5c19

Please sign in to comment.