We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-else-continue
1 parent 4cf25b7 commit ceec98cCopy full SHA for ceec98c
pysollib/tile/selectgame.py
@@ -625,11 +625,11 @@ def performSearch(self):
625
self.criteria.statisticsOptions[self.criteria.statistics]
626
if statoption == 'played' and won + lost == 0:
627
continue
628
- elif statoption == 'won' and won == 0:
+ if statoption == 'won' and won == 0:
629
630
- elif statoption == 'not won' and (won != 0 or lost == 0):
+ if statoption == 'not won' and (won != 0 or lost == 0):
631
632
- elif statoption == 'not played' and won + lost != 0:
+ if statoption == 'not played' and won + lost != 0:
633
634
635
if (self.criteria.popular and
0 commit comments