Skip to content

Files

Latest commit

 

History

History
25 lines (15 loc) · 379 Bytes

File metadata and controls

25 lines (15 loc) · 379 Bytes

Pattern: Use of tab after ,

Issue: -

Description

There should be only one space after the , character.

Example of incorrect code:

Note: The character represents a tab.

my_tuple = 1,→2,→3

Example of correct code:

my_tuple = 1, 2, 3

Further Reading