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 e3ebc6f commit 2782adcCopy full SHA for 2782adc
epidatpy/_endpoints.py
@@ -896,14 +896,14 @@ def pub_rvdss(
896
EpidataFieldInfo(
897
"geo_type",
898
EpidataFieldType.categorical,
899
- categories=list("nation", "region", "province", "lab")
+ categories=["nation", "region", "province", "lab"]
900
),
901
EpidataFieldInfo("geo_value",EpidataFieldType.text),
902
EpidataFieldInfo("region", EpidataFieldType.text),
903
904
"time_type",
905
906
- categories=list("week")
+ categories=["week"]
907
908
EpidataFieldInfo("epiweek", EpidataFieldType.epiweek), # Stored as an int in YYYYWW format
909
EpidataFieldInfo("time_value", EpidataFieldType.epiweek), # Stored as a date
0 commit comments