Remove extra if clause added when trying to merge.

This commit is contained in:
Rebecca Law
2017-12-15 11:58:55 +00:00
parent 6ae8415974
commit 9b884770e5

View File

@@ -52,11 +52,6 @@ def get_billing_data_for_month(service_id, start_date, end_date, notification_ty
elif notification_type == LETTER_TYPE:
results.extend(billing_letter_data_per_month_query(service_id, start_date, end_date))
if notification_type == LETTER_TYPE:
results.extend(billing_letter_data_per_month_query(
service_id=service_id, start_date=start_date, end_date=end_date)
)
return results