Skip to content

Commit ccba87b

Browse files
committed
fix errors
1 parent af989af commit ccba87b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

protocol-designer/src/file-data/__tests__/createFile.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ CUSTOM_LABWARE = json.loads("""{"fixture/fixture_trash/1":{"ordering":[["A1"]],"
247247
},
248248
},
249249
},
250-
version: '8.7.0',
250+
version: '8.8.0',
251251
name: 'opentrons/protocol-designer',
252252
},
253253
robot: { model: OT2_ROBOT_TYPE },

step-generation/src/__tests__/flexStackerFillItems.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import {
44
fixture96Plate,
55
FLEX_STACKER_MODULE_TYPE,
66
FLEX_STACKER_MODULE_V1,
7-
LabwareDefinition2,
87
} from '@opentrons/shared-data'
98

109
import { flexStackerFillItems } from '../commandCreators/atomic/flexStackerFillItems'
1110
import { getInitialRobotStateStandard, makeContext } from '../fixtures'
1211

12+
import type { LabwareDefinition2 } from '@opentrons/shared-data'
1313
import type { InvariantContext, RobotState } from '../types'
1414

1515
const moduleId = 'flexStackerId'

step-generation/src/getNextRobotStateAndWarnings/stackerUpdates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
} from '@opentrons/shared-data'
88

99
import { getModuleState } from '../robotStateSelectors'
10-
import { getLargestStackInSlot, uuid } from '../utils'
10+
import { uuid } from '../utils'
1111

1212
import type {
1313
FlexStackerEmptyParams,

step-generation/src/utils/pythonFileUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ import type {
4949
} from '../types'
5050

5151
export const PAPI_VERSION = '2.28' // latest version from api/src/opentrons/protocols/api_support/definitions.py from the RS release branch
52-
export const PD_APPLICATION_VERSION = '8.9.0' // latest PD version to insert into DESIGNER_APPLICATION blob
52+
export const PD_APPLICATION_VERSION = '8.8.0' // latest PD version to insert into DESIGNER_APPLICATION blob
5353

5454
export function pythonImports(): string {
5555
return ['import json', 'from opentrons import protocol_api, types'].join('\n')

0 commit comments

Comments
 (0)