Skip to content

Commit

Permalink
Fixing wrong schema in ProbeRegister model for /register
Browse files Browse the repository at this point in the history
  • Loading branch information
LDiazN committed Jan 16, 2025
1 parent f3785be commit c52c208
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import logging
from datetime import datetime, timezone, timedelta
import time
from typing import List

from fastapi import APIRouter, Depends, HTTPException, Response

Expand Down Expand Up @@ -74,7 +75,7 @@ class ProbeRegister(BaseModel):
probe_cc : str
software_name : str
software_version : str
supported_tests : str
supported_tests : List[str]

class ProbeRegisterResponse(BaseModel):
client_id: str
Expand Down

0 comments on commit c52c208

Please sign in to comment.