Update api_schemas.py

Fix api schema for cpu_pct float List.
This commit is contained in:
Robert Davey 2021-10-07 12:04:42 +01:00 committed by GitHub
parent 992cef56e6
commit f07eeddda0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -350,5 +350,5 @@ class BacktestResponse(BaseModel):
class SysInfo(BaseModel):
cpu_pct: float
cpu_pct: List[float]
ram_pct: float