Skip to content

Commit 307f745

Browse files
committed
lint fixes
1 parent b3b2e1e commit 307f745

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class Configure(BaseCommand[ConfigureParams, ConfigureResult, ErrorOccurrence]):
6262

6363
commandType: ConfigureCommandType = "flexStacker/configure"
6464
params: ConfigureParams
65-
result: Optional[ConfigureResult]
65+
result: Optional[ConfigureResult] = None
6666

6767
_ImplementationCls: Type[ConfigureImpl] = ConfigureImpl
6868

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class Retrieve(BaseCommand[RetrieveParams, RetrieveResult, ErrorOccurrence]):
113113

114114
commandType: RetrieveCommandType = "flexStacker/retrieve"
115115
params: RetrieveParams
116-
result: Optional[RetrieveResult]
116+
result: Optional[RetrieveResult] = None
117117

118118
_ImplementationCls: Type[RetrieveImpl] = RetrieveImpl
119119

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class Store(BaseCommand[StoreParams, StoreResult, ErrorOccurrence]):
100100

101101
commandType: StoreCommandType = "flexStacker/store"
102102
params: StoreParams
103-
result: Optional[StoreResult]
103+
result: Optional[StoreResult] = None
104104

105105
_ImplementationCls: Type[StoreImpl] = StoreImpl
106106

app/src/assets/localization/en/device_details.json

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
"firmware_updated_successfully": "Firmware updated successfully",
6666
"fixture": "Fixture",
6767
"flex_stacker_door_status": "Door status: {{status}}",
68-
"have_not_run_description": "After you run some protocols, they will appear here.",
6968
"have_not_run": "No recent runs",
7069
"have_not_run_description": "After you run some protocols, they will appear here.",
7170
"heater": "Heater",

0 commit comments

Comments
 (0)