## Explanation Removing a negation makes things simpler to understand ## Example ``` # Bad b if not a else a # Good a if a else b ```