Skip to content

Files

Latest commit

 

History

History
29 lines (20 loc) · 748 Bytes

File metadata and controls

29 lines (20 loc) · 748 Bytes

Pattern: Use of redundant \ between brackets

Issue: -

Description

There is no need for backslashes between brackets.

Example of incorrect code:

print('Four score and seven years ago our fathers brought '\
      'forth, upon this continent, a new nation, conceived '\
      'in liberty, and dedicated to the proposition that '\
      '"all men are created equal."')

Example of correct code:

print('Four score and seven years ago our fathers brought '
      'forth, upon this continent, a new nation, conceived '
      'in liberty, and dedicated to the proposition that '
      '"all men are created equal."')

Further Reading