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 7f882e3 commit b4223f5Copy full SHA for b4223f5
paramgenerator/generateparamsbi.py
@@ -193,9 +193,9 @@ def serialize_q13(countries):
193
writer.append([country], [count])
194
195
def serialize_q14(creationdates):
196
- writer = ParamsWriter("q14", ["begin","todoEnd"])
+ writer = ParamsWriter("q14", ["begin","end"])
197
for creation, count in creationdates:
198
- writer.append([str(creation),str(1278888800000)], [count])
+ writer.append([str(creation[0]),str(creation[1])], [count])
199
200
def serialize_q15(countries):
201
writer = ParamsWriter("q15", ["country"])
0 commit comments