We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f4472 commit b362750Copy full SHA for b362750
app/main.py
@@ -25,7 +25,7 @@ class TimelineStats(pydantic.BaseModel):
25
timeline: Dict[str, int]
26
27
28
-class Timelines(pydantic.BaseModel):
+class TimelinedLocation(pydantic.BaseModel):
29
confirmed: TimelineStats
30
deaths: TimelineStats
31
recovered: TimelineStats
@@ -39,7 +39,7 @@ class Country(pydantic.BaseModel):
39
last_updated: dt.datetime = None
40
latest: Totals = None
41
province: str = None
42
- timelines: Timelines = None
+ timelines: TimelinedLocation = None
43
44
45
class AllLocations(pydantic.BaseModel):
0 commit comments