Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed Jan 21, 2025
1 parent dc03de1 commit 9cf952e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions www/crud/robot_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ async def update_robot_class(
robot_class: The robot class to update.
new_class_name: The new name of the robot class.
new_description: The new description of the robot class.
new_metadata: The new metadata of the robot class.
Returns:
The robot class that was updated.
Expand Down
2 changes: 1 addition & 1 deletion www/routers/robot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from typing import Annotated, Self

from fastapi import APIRouter, Body, Depends, Query
from fastapi import APIRouter, Body, Depends
from pydantic import BaseModel

from www.auth import User, require_permissions, require_user
Expand Down
2 changes: 1 addition & 1 deletion www/routers/robot_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import asyncio
from typing import Annotated

from fastapi import APIRouter, Body, Depends, Query
from fastapi import APIRouter, Body, Depends
from pydantic import BaseModel

from www.auth import User, require_permissions, require_user
Expand Down

0 comments on commit 9cf952e

Please sign in to comment.