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')