This means values which are 'falsy' will affect how the error message prints out;
E.G.
MismatchError("Message",1, 0)MismatchError("Message",1, None)MismatchError("Message",1)
All produce the same error message, where as the first message should specify an expected value of 0.
This means values which are 'falsy' will affect how the error message prints out;
E.G.
MismatchError("Message",1, 0)
MismatchError("Message",1, None)
MismatchError("Message",1)
All produce the same error message, where as the first message should specify an expected value of 0.