Finish implementation and tests for the cheat system #3

Closed
m wants to merge 67 commits from cheat-refactor into master
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 1895319e17 - Show all commits

View File

@ -305,8 +305,9 @@ class Agora(object):
in order to gain the most profits and sales.
"""
ads, place = self.sort_ads_annotate_place(ads)
all_results_us = all([ad[1] == settings.Agora.Username for ad in ads])
if place == 0:
if len(ads) > 1:
if len(ads) > 1 and not all_results_us:
competitor_index = None
for index, ad in enumerate(ads):
if ad[1] != settings.Agora.Username: