flake8-pie icon indicating copy to clipboard operation
flake8-pie copied to clipboard

starts-with-ends-with

Open sbdchd opened this issue 4 years ago • 0 comments

# error
foo.startswith("foo") or foo.startswith("bar")

# ok
foo.startswith(("foo",  "bar"))

# error
foo.endswith("foo") or foo.endswith("bar")

# ok
foo.endswith(("foo",  "bar"))

sbdchd avatar Aug 11 '21 14:08 sbdchd