Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 502 Bytes

File metadata and controls

27 lines (17 loc) · 502 Bytes

Pattern: Under-indented continuation line for visual indent

Issue: -

Description

A continuation line is under-indented for a visual indentation.

Example of incorrect code:

In this example the string "World" is under-indented by two spaces.

print("Python", ("Hello",
               "World"))

Example of correct code:

print("Python", ("Hello",
                 "World"))

Further Reading