Skip to content

Files

Latest commit

 

History

History
27 lines (18 loc) · 591 Bytes

File metadata and controls

27 lines (18 loc) · 591 Bytes

Pattern: Closing bracket does not match visual indentation

Issue: -

Description

Closing brackets should match the indentation of the opening bracket.

Example of incorrect code:

result = function_that_takes_arguments('a', 'b', 'c',
                                       'd', 'e', 'f',
)

Example of correct code:

result = function_that_takes_arguments('a', 'b', 'c',
                                       'd', 'e', 'f',
                                       )

Further Reading