Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 431 Bytes

File metadata and controls

33 lines (20 loc) · 431 Bytes

Pattern: Blank line contains whitespace

Issue: -

Description

Blank lines should not contain any tabs or spaces.

Example of incorrect code:

Note: The character represents a space.

def first_func():
    pass
••••  # This line contains four spaces

def second_func():
    pass

Example of correct code:

def first_func():
    pass


def second_func():
    pass