Replaces find(...) != None with exists.
Before:
seq.find(myValueIsGoodEnough) != None
After:
seq.exists(myValueIsGoodEnough)