So, I look at some code and bring it to the PEP 8 standard using pylint, and I noticed that if I used triple quotes for the print statement, where the text passed 120 characters (we allow 120 instead of 79) complained.
Is this a mistake in pylint, or does it think it is a comment and is more lenient with the length of the lines, or does it not care how far the lines go in trippple quotes, because you can format them that way?
For clarity: yes pylint works fine in every other case of passing the length of a string.
source share