Skip to content

Commit 4914281

Browse files
authored
fix(api, shared-data): fix camel-casing for the flexStacker/setStored Labware command (#17766)
1 parent c6ca409 commit 4914281

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

api/src/opentrons/protocol_engine/commands/flex_stacker/set_stored_labware.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from opentrons.protocol_engine.state.state import StateView
2020
from opentrons.protocol_engine.execution import EquipmentHandler
2121

22-
SetStoredLabwareCommandType = Literal["flexStacker/setStoredlabware"]
22+
SetStoredLabwareCommandType = Literal["flexStacker/setStoredLabware"]
2323

2424

2525
class StackerStoredLabwareDetails(BaseModel):
@@ -174,7 +174,7 @@ class SetStoredLabware(
174174
):
175175
"""A command to setstoredlabware the Flex Stacker."""
176176

177-
commandType: SetStoredLabwareCommandType = "flexStacker/setStoredlabware"
177+
commandType: SetStoredLabwareCommandType = "flexStacker/setStoredLabware"
178178
params: SetStoredLabwareParams
179179
result: Optional[SetStoredLabwareResult] = None
180180

@@ -184,7 +184,7 @@ class SetStoredLabware(
184184
class SetStoredLabwareCreate(BaseCommandCreate[SetStoredLabwareParams]):
185185
"""A request to execute a Flex Stacker SetStoredLabware command."""
186186

187-
commandType: SetStoredLabwareCommandType = "flexStacker/setStoredlabware"
187+
commandType: SetStoredLabwareCommandType = "flexStacker/setStoredLabware"
188188
params: SetStoredLabwareParams
189189

190190
_CommandCls: Type[SetStoredLabware] = SetStoredLabware

shared-data/command/schemas/12.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4933,9 +4933,9 @@
49334933
"description": "A request to execute a Flex Stacker SetStoredLabware command.",
49344934
"properties": {
49354935
"commandType": {
4936-
"const": "flexStacker/setStoredlabware",
4937-
"default": "flexStacker/setStoredlabware",
4938-
"enum": ["flexStacker/setStoredlabware"],
4936+
"const": "flexStacker/setStoredLabware",
4937+
"default": "flexStacker/setStoredLabware",
4938+
"enum": ["flexStacker/setStoredLabware"],
49394939
"title": "Commandtype",
49404940
"type": "string"
49414941
},
@@ -6583,7 +6583,7 @@
65836583
"flexStacker/empty": "#/$defs/EmptyCreate",
65846584
"flexStacker/fill": "#/$defs/FillCreate",
65856585
"flexStacker/retrieve": "#/$defs/RetrieveCreate",
6586-
"flexStacker/setStoredlabware": "#/$defs/SetStoredLabwareCreate",
6586+
"flexStacker/setStoredLabware": "#/$defs/SetStoredLabwareCreate",
65876587
"flexStacker/store": "#/$defs/StoreCreate",
65886588
"getNextTip": "#/$defs/GetNextTipCreate",
65896589
"getTipPresence": "#/$defs/GetTipPresenceCreate",

0 commit comments

Comments
 (0)