Skip to content

Files

Latest commit

 

History

History
23 lines (14 loc) · 351 Bytes

File metadata and controls

23 lines (14 loc) · 351 Bytes

Pattern: Missing whitespace after ,/;/:

Issue: -

Description

There should be whitespace after the characters ,, ;, and :.

Example of incorrect code:

my_tuple = 1,2,3

Example of correct code:

my_tuple = 1, 2, 3

Further Reading