flake8-pie
flake8-pie copied to clipboard
prefer-starts-with
probably have one for ends with as well, or maybe they can the same rule?
# err
if re.search(r"^@.*$", foo):
...
# ok
if foo.startswith("@"):
...