## Rule Do not use an if-else block when you can directly return the condition. ## Example ``` # Bad if condition: return True else return False # Good return bool(condition) ```