We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2970e8e commit 10e0fa7Copy full SHA for 10e0fa7
step-generation/src/utils/pythonFileUtils.ts
@@ -297,11 +297,11 @@ export function getLoadLabware(
297
// 2nd item in stack is the slot the labware is on
298
const labwareSlot = labwareRobotState[id].stack[1]
299
const onModule = moduleEntities[labwareSlot] != null
300
- const onAdapter = allLabwareEntities[labwareSlot] != null
+ const onLabware = allLabwareEntities[labwareSlot] != null
301
302
let parentName: string
303
let locationArg: string | undefined
304
- if (onAdapter && !isLabwareOnHopper) {
+ if (onLabware && !isLabwareOnHopper) {
305
parentName = allLabwareEntities[labwareSlot].pythonName
306
} else if (onModule) {
307
parentName = moduleEntities[labwareSlot].pythonName
0 commit comments