Skip to content

Files

Latest commit

 

History

History
20 lines (12 loc) · 311 Bytes

File metadata and controls

20 lines (12 loc) · 311 Bytes

Pattern: Missing whitespace after keyword

Issue: -

Description

There should be one space after keywords.

Example of incorrect code:

from collections import(namedtuple, defaultdict)

Example of correct code:

from collections import (namedtuple, defaultdict)