Skip to content

Commit

Permalink
Undo unnecessary datafiles_router move.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed Dec 5, 2024
1 parent 76175ce commit 70d6a55
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions robot-server/robot_server/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@
dependencies=[Depends(check_version_header)],
)

router.include_router(
router=datafiles_router,
tags=["Data files Management"],
dependencies=[Depends(check_version_header)],
)

router.include_router(
router=labware_offset_router,
tags=["Labware Offset Management"],
Expand All @@ -86,6 +80,12 @@
dependencies=[Depends(check_version_header)],
)

router.include_router(
router=datafiles_router,
tags=["Data files Management"],
dependencies=[Depends(check_version_header)],
)

router.include_router(
router=commands_router,
tags=["Simple Commands"],
Expand Down

0 comments on commit 70d6a55

Please sign in to comment.