Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 303 Bytes

File metadata and controls

24 lines (15 loc) · 303 Bytes

Pattern: Use of tab after keyword

Issue: -

Description

There should be only one space after a keyword.

Note: The character represents a tab.

Example of incorrect code:

deffunc():
    pass

Example of correct code:

def func():
    pass