52
52
"""
53
53
),
54
54
status_code = 201 ,
55
- include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
56
55
)
57
56
async def post_labware_offset ( # noqa: D103
58
57
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
@@ -91,7 +90,6 @@ async def post_labware_offset( # noqa: D103
91
90
" Filters are ANDed together."
92
91
" Results are returned in order from oldest to newest."
93
92
),
94
- include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
95
93
)
96
94
async def get_labware_offsets ( # noqa: D103
97
95
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
@@ -183,7 +181,6 @@ async def get_labware_offsets( # noqa: D103
183
181
path = "/labwareOffsets/{id}" ,
184
182
summary = "Delete a single labware offset" ,
185
183
description = "Delete a single labware offset. The deleted offset is returned." ,
186
- include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
187
184
)
188
185
async def delete_labware_offset ( # noqa: D103
189
186
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
@@ -206,7 +203,6 @@ async def delete_labware_offset( # noqa: D103
206
203
router .delete ,
207
204
path = "/labwareOffsets" ,
208
205
summary = "Delete all labware offsets" ,
209
- include_in_schema = False , # todo(mm, 2025-01-08): Include for v8.4.0.
210
206
)
211
207
async def delete_all_labware_offsets ( # noqa: D103
212
208
store : Annotated [LabwareOffsetStore , fastapi .Depends (get_labware_offset_store )],
0 commit comments