Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 456 Bytes

File metadata and controls

27 lines (17 loc) · 456 Bytes

Pattern: Malformed indentation for continuation line

Issue: -

Description

A continuation line is not indented as far as it should be or is indented too far.

Example of incorrect code:

In this example the second line is missing indentation.

print("Python", (
"Rules"))

Example of correct code:

print("Python", (
    "Rules"))

Further Reading