Skip to content

Commit ceec98c

Browse files
authored
Resolve no-else-continue (#469)
1 parent 4cf25b7 commit ceec98c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pysollib/tile/selectgame.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -625,11 +625,11 @@ def performSearch(self):
625625
self.criteria.statisticsOptions[self.criteria.statistics]
626626
if statoption == 'played' and won + lost == 0:
627627
continue
628-
elif statoption == 'won' and won == 0:
628+
if statoption == 'won' and won == 0:
629629
continue
630-
elif statoption == 'not won' and (won != 0 or lost == 0):
630+
if statoption == 'not won' and (won != 0 or lost == 0):
631631
continue
632-
elif statoption == 'not played' and won + lost != 0:
632+
if statoption == 'not played' and won + lost != 0:
633633
continue
634634

635635
if (self.criteria.popular and

0 commit comments

Comments
 (0)