Blank line contains whitespace (W293)
Blank lines should not contain any tabs or spaces.
Anti-pattern
Note: The • character represents a space.
def first_func():
    pass
••••  # This line contains four spaces
def second_func():
    pass
Best practice
def first_func():
    pass
def second_func():
    pass