Typo Fixed

This commit is contained in:
TonyJabbour 2021-10-01 10:06:37 +02:00
parent e1d5e8f202
commit 09f6d64e1b

View file

@ -192,7 +192,7 @@ def get_json_retro_hunt_nb_items_by_date():
if date_from and date_to: if date_from and date_to:
res = Tracker.get_retro_hunt_nb_item_by_day([task_uuid], date_from=date_from, date_to=date_to) res = Tracker.get_retro_hunt_nb_item_by_day([task_uuid], date_from=date_from, date_to=date_to)
else: else:
res = Term.get_retro_hunt_nb_item_by_day([task_uuid]) res = Tracker.get_retro_hunt_nb_item_by_day([task_uuid])
return jsonify(res) return jsonify(res)