Pythoners!is there a linter / flake8 plugin etc for this pattern:if thing(): return else: otherthings()Where it requires you to write:if thing(): returnotherthings()?