Skip to content

Commit

Permalink
fix(api): missed one link in the chain of loading config values
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanthecoder committed Dec 20, 2024
1 parent 3db0e4f commit 9ff7852
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ def get_attached_instrument(self, mount: OT3Mount) -> PipetteDict:
"back_compat_names",
"supported_tips",
"lld_settings",
"available_sensors",
]

instr_dict = instr.as_dict()
Expand Down Expand Up @@ -289,6 +290,7 @@ def get_attached_instrument(self, mount: OT3Mount) -> PipetteDict:
"drop_tip": instr.plunger_positions.drop_tip,
}
result["shaft_ul_per_mm"] = instr.config.shaft_ul_per_mm
result["available_sensors"] = instr.config.available_sensors
return cast(PipetteDict, result)

@property
Expand Down

0 comments on commit 9ff7852

Please sign in to comment.