Try to reduce function returns to a single place e.g. set a variable and return that instead of early returning in an if statement Instead of ``` if blah: return False ``` ``` if blah: success = False ... return success ```