Skip to content

Commit b937907

Browse files
committed
Fixed endDate param for q21
1 parent 7263490 commit b937907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

paramgenerator/generateparamsbi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ def serialize_q20():
231231
def serialize_q21(countries):
232232
writer = ParamsWriter("q21", ["country","endDate"])
233233
for country, count in countries:
234-
writer.append([country,str("2013-02-01")], [count])
234+
writer.append([country,str(format_date(END_DATE))], [count])
235235

236236
def serialize_q22(countries):
237237
writer = ParamsWriter("q22", ["country1","country2"])

0 commit comments

Comments
 (0)