Pattern: Use of multiple spaces before keyword
Issue: -
There should be only one space before a keyword.
In this example there are two spaces before the in
keyword.
def func():
if 1 in [1, 2, 3]:
print('yep!')
def func():
if 1 in [1, 2, 3]:
print('yep!')