fix models int to str

This commit is contained in:
Tiago vasconcelos 2022-02-22 21:22:07 +00:00
parent 71e11b7387
commit 8930152b0f

View File

@ -60,7 +60,7 @@ class Service(BaseModel):
onchain: Optional[str]
servicename: str # Currently, this will just always be "Streamlabs"
authenticated: bool # Whether a token (see below) has been acquired yet
token: Optional[int] # The token with which to authenticate requests
token: Optional[str] # The token with which to authenticate requests
@classmethod
def from_row(cls, row: Row) -> "Service":