Skip to content

Commit 7b710ea

Browse files
SyntaxColoringcaila-marashaj
authored andcommitted
docs(robot-server): Include /labwareOffsets endpoints in docs again (#17441)
These HTTP API endpoints were hidden from the docs because they were incomplete and we didn't want the soon-to-be-released v8.3.0 software to advertise them. v8.3.0 is in its own branch now, so we can undo that, so the docs match the in-development state of v8.4.0. Reverts commit 5f869ea, PR #17219.
1 parent 02c8130 commit 7b710ea

File tree

1 file changed

+0
-4
lines changed
  • robot-server/robot_server/labware_offsets

1 file changed

+0
-4
lines changed

robot-server/robot_server/labware_offsets/router.py

-4
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858
"""
5959
),
6060
status_code=201,
61-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
6261
)
6362
async def post_labware_offsets( # noqa: D103
6463
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
@@ -119,7 +118,6 @@ async def post_labware_offsets( # noqa: D103
119118
" Filters are ANDed together."
120119
" Results are returned in order from oldest to newest."
121120
),
122-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
123121
)
124122
async def get_labware_offsets( # noqa: D103
125123
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
@@ -211,7 +209,6 @@ async def get_labware_offsets( # noqa: D103
211209
path="/labwareOffsets/{id}",
212210
summary="Delete a single labware offset",
213211
description="Delete a single labware offset. The deleted offset is returned.",
214-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
215212
)
216213
async def delete_labware_offset( # noqa: D103
217214
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
@@ -234,7 +231,6 @@ async def delete_labware_offset( # noqa: D103
234231
router.delete,
235232
path="/labwareOffsets",
236233
summary="Delete all labware offsets",
237-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
238234
)
239235
async def delete_all_labware_offsets( # noqa: D103
240236
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],

0 commit comments

Comments
 (0)