Skip to content

Files

Latest commit

 

History

History
25 lines (16 loc) · 411 Bytes

File metadata and controls

25 lines (16 loc) · 411 Bytes

Pattern: Over-indented continuation line for handing indent

Issue: -

Description

A continuation line is indented farther than it should be for a hanging indent.

Example of incorrect code:

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

Example of correct code:

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

Further Reading