Missing whitespace after ',', ';', or ':' (E231)
There should be whitespace after the characters ,, ;, and :.
Anti-pattern
my_tuple = 1,2,3
Best practice
my_tuple = 1, 2, 3
There should be whitespace after the characters ,, ;, and :.
my_tuple = 1,2,3
my_tuple = 1, 2, 3