Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 392 Bytes

File metadata and controls

27 lines (17 loc) · 392 Bytes

Pattern: Too many leading # for block comment

Issue: -

Description

There should be only one leading # for a block comment.

Example of incorrect code:

## Prints hello
print('hello')

Example of correct code:

Only use one #.

# Prints hello
print('hello')

Further Reading