Skip to content

Commit

Permalink
removed wrong annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
arinaLozhkina committed Aug 3, 2023
1 parent d30d984 commit 31c333d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ms3/bs4_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2165,7 +2165,7 @@ def soup_references(self) -> dict[str, dict[str, bs4.Tag]]:
for key_part, part in self.parsed_parts.parts_data.items():
instrument_tag = part.Instrument
staves_list = part.find_all('Staff')
staves: Dict[str, bs4.Tag] = [f"staff_{(staff['id'])}" for staff in staves_list]
staves = [f"staff_{(staff['id'])}" for staff in staves_list]
staves_dict = {}
for key_staff, data_staff in zip(staves, staves_list):
staff_type = data_staff.StaffType
Expand Down

0 comments on commit 31c333d

Please sign in to comment.