Multiple spaces after ',' (E241)
There should be only one space after the ,
character.
Anti-pattern
In this example there are two spaces after the comma
my_tuple = 1, 2
Best practice
my_tuple = 1, 2
There should be only one space after the ,
character.
In this example there are two spaces after the comma
my_tuple = 1, 2
my_tuple = 1, 2