Skip to content

Commit a607b18

Browse files
Revert "docs(robot-server): Exclude /labwareOffsets endpoints from docs (#17219)"
This reverts commit 5f869ea.
1 parent f16f6a0 commit a607b18

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
@@ -52,7 +52,6 @@
5252
"""
5353
),
5454
status_code=201,
55-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
5655
)
5756
async def post_labware_offset( # noqa: D103
5857
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
@@ -91,7 +90,6 @@ async def post_labware_offset( # noqa: D103
9190
" Filters are ANDed together."
9291
" Results are returned in order from oldest to newest."
9392
),
94-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
9593
)
9694
async def get_labware_offsets( # noqa: D103
9795
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
@@ -183,7 +181,6 @@ async def get_labware_offsets( # noqa: D103
183181
path="/labwareOffsets/{id}",
184182
summary="Delete a single labware offset",
185183
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.
187184
)
188185
async def delete_labware_offset( # noqa: D103
189186
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],
@@ -206,7 +203,6 @@ async def delete_labware_offset( # noqa: D103
206203
router.delete,
207204
path="/labwareOffsets",
208205
summary="Delete all labware offsets",
209-
include_in_schema=False, # todo(mm, 2025-01-08): Include for v8.4.0.
210206
)
211207
async def delete_all_labware_offsets( # noqa: D103
212208
store: Annotated[LabwareOffsetStore, fastapi.Depends(get_labware_offset_store)],

0 commit comments

Comments
 (0)