I'm doing code review, and seeing method declarations like that:
def __init__(self,data):
I always thought that it should be formatted like this:
def __init__(self, data):
But then I checked PEP 0008 and see no exact statement about that. There is guide about whitespace around operators, and inside parentheses, but no about comma separated list.
If it is not described in PEP8, probably there is some unwritten convention about this? Why I was convinced that this was in PEP8? Shoud PEP8 be updated?