Too many leading '#' for block comment (E266)
There should be only one leading # for a block comment.
Anti-pattern
## Prints hello
print('hello')
Best practice
Only use one #.
# Prints hello
print('hello')
There should be only one leading # for a block comment.
## Prints hello
print('hello')
Only use one #.
# Prints hello
print('hello')