Skip to content

Commit

Permalink
fix(api): unbound variable in close lid (#16358)
Browse files Browse the repository at this point in the history
fixed unbound variable that was merged in
[#16276](#16276)
  • Loading branch information
TamarZanzouri authored Sep 26, 2024
1 parent 31fd73e commit 7100b00
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ async def execute(
labware_location=new_location,
)

state_update = StateUpdate()
state_update.set_labware_location(
labware_id=loaded_lid.id,
new_location=new_location,
new_offset_id=new_offset_id,
)
state_update = StateUpdate()
state_update.set_labware_location(
labware_id=loaded_lid.id,
new_location=new_location,
new_offset_id=new_offset_id,
)

return SuccessData(
public=CloseLidResult(
Expand Down

0 comments on commit 7100b00

Please sign in to comment.