fixed incorrect typing issues

This commit is contained in:
2023-11-26 13:41:42 +01:00
parent 530b397592
commit 80ccaa83d3
8 changed files with 92 additions and 60 deletions

View File

@@ -6,6 +6,8 @@ router = APIRouter()
@router.get("/health", include_in_schema=True)
async def health() -> Machine: #str:
return Machine(name="test", status=Status.ONLINE)
async def health() -> Machine: # str:
return Machine(name="test", status=Status.ONLINE)
# return "OK"