Skip to content

Commit

Permalink
mypy fixes again
Browse files Browse the repository at this point in the history
  • Loading branch information
cgevans committed Nov 5, 2023
1 parent f752947 commit 84dcbaa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/qslib/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,9 @@ def _parse_multicomponent_data_v1(root: ET.ElementTree):
cycle_count = int(_find_text_or_raise(root, "CycleCount"))

welldyes = {
int(dd.attrib["WellIndex"]): _parse_strlist(dd.find("DyeList").text) # fixme
int(dd.attrib["WellIndex"]): _parse_strlist(
_find_text_or_raise(dd, "DyeList")
) # fixme
for dd in root.findall("DyeData")
}

Expand Down

0 comments on commit 84dcbaa

Please sign in to comment.