pep8: Add compliance with rule E261 to statistics.py.

This commit is contained in:
Aditya Bansal 2017-05-07 20:42:16 +05:30 committed by Tim Abbott
parent df2b49af66
commit babdb8dd64
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ def users_active_nosend_during_day(day):
active_users = active_users_to_measure()
today_senders = users_who_sent_between(begin_day, end_day)
today_users = [] # type: List[UserProfile]
today_users = [] # type: List[UserProfile]
for user_profile in active_users:
intervals = UserActivityInterval.objects.filter(user_profile=user_profile,
end__gte=begin_day,