I have a Django project, and in some places we have multiline comments indented as follows:
field = models.IntegerField(default=0, null=True) # 0-initial_email_sent
# 1-second_email_sent
# 2-third_email_sent
This clearly violates PEP, but, in my opinion, helps with readability. Of course, I could put comments like this:
# 0-initial_email_sent
# 1-second_email_sent
# 2-third_email_sent
field = models.IntegerField(default=0, null=True)
, but I would much rather prefer the first one.
Is there any way to indent comments as such without violating PEP?