Skip to content

Files

Latest commit

 

History

History
25 lines (15 loc) · 388 Bytes

File metadata and controls

25 lines (15 loc) · 388 Bytes

Pattern: Use of multiple spaces after ,

Issue: -

Description

There should be only one space after the , character.

Example of incorrect code:

In this example there are two spaces after the comma

my_tuple = 1,  2

Example of correct code:

my_tuple = 1, 2

Further Reading