Code Style Updates

Updated the to conform with the line ends expected by the code style in
tests rather than PyCharm.
This commit is contained in:
Richard Chapman
2017-11-16 15:16:31 +00:00
parent e7de0c0900
commit fd89a252e0

View File

@@ -589,9 +589,8 @@ def dao_fetch_monthly_historical_usage_by_template_for_service(service_id, year)
for today_result in today_results:
add_to_stats = True
for stat in stats:
if today_result.template_id == stat.template_id and \
today_result.month == stat.month and \
today_result.year == stat.year:
if today_result.template_id == stat.template_id and today_result.month == stat.month \
and today_result.year == stat.year:
stat.count = stat.count + today_result.count
add_to_stats = False