Skip to content

Commit

Permalink
Merge pull request #296 from vshekar/retry-mount-fix
Browse files Browse the repository at this point in the history
Fixed wrong parameters passed to mount function when retrying after error
  • Loading branch information
JunAishima authored Aug 9, 2023
2 parents df11338 + 7cebe93 commit 2b429ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion embl_robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def mount(self, gov_robot, puckPos,pinPos,sampID,**kwargs):
else:
if (retryMountCount == 0):
retryMountCount+=1
mountStat = self.mount(puckPos,pinPos,sampID, kwargs)
mountStat = self.mount(gov_robot, puckPos,pinPos,sampID, **kwargs)
if (mountStat == MOUNT_STEP_SUCCESSFUL):
retryMountCount = 0
return mountStat
Expand Down

0 comments on commit 2b429ce

Please sign in to comment.