Skip to content

Commit b4223f5

Browse files
committed
Fixed params for query14
1 parent 7f882e3 commit b4223f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paramgenerator/generateparamsbi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ def serialize_q13(countries):
193193
writer.append([country], [count])
194194

195195
def serialize_q14(creationdates):
196-
writer = ParamsWriter("q14", ["begin","todoEnd"])
196+
writer = ParamsWriter("q14", ["begin","end"])
197197
for creation, count in creationdates:
198-
writer.append([str(creation),str(1278888800000)], [count])
198+
writer.append([str(creation[0]),str(creation[1])], [count])
199199

200200
def serialize_q15(countries):
201201
writer = ParamsWriter("q15", ["country"])

0 commit comments

Comments
 (0)