Created attachment 359127 [details] [review] Fix bogus or expressions The or _expression_ would be evaluated first, and would evaluate to the left hand side (which is truthy). This is not what the code is meant to achieve. To do that, use "in" to check membership in the tuple.