I am trying to follow PEP-8 in my project.
E.g. there is some statement which should have a long comment (so line length more than 79 characters now):
fields_to_display = ['id', 'order_item'] # set here a list of fields to display when something happens somewhere
In PEP-8 we read:
An inline comment is a comment on the same line as a statement.
So i guess i should use an inline comment.
If so how should i make it fit the 79 characters restriction
properly?