Skip to content

Commit

Permalink
construct SN for tag right
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Nov 22, 2024
1 parent 2d1ebf2 commit 0b30654
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,10 @@ def get_pipette_serial_ot3(pipette: Union[PipetteOT2, PipetteOT3]) -> str:
"""Get pipette serial number."""
model = pipette.model
volume = model.split("_")[0].replace("p", "")
volume = "1K" if volume == "1000" else volume
if volume == "1000":
volume = "1K"
elif volume == "200":
volume = "2H"
if "single" in model:
channels = "S"
elif "96" in model:
Expand Down

0 comments on commit 0b30654

Please sign in to comment.