Skip to content

Files

Latest commit

 

History

History
31 lines (22 loc) · 524 Bytes

File metadata and controls

31 lines (22 loc) · 524 Bytes

Pattern: Unaligned continuation line for hanging indent

Issue: -

Description

A continuation line is unaligned for hanging indent.

Example of incorrect code:

my_dict = {
    "key": "value",
    "long": "the quick brown fox jumps over the "
        "lazy dog",
}

Example of correct code:

my_dict = {
    "key": "value",
    "long": "the quick brown fox jumps over the "
            "lazy dog",
}

Further Reading