Pattern: Malformed line continuation spacing
Issue: -
Checks that the backslash of a line continuation is separated from preceding text by exactly one space (default) or zero spaces.
# bad
'a'\
'b' \
'c'
# good
'a' \
'b' \
'c'
Pattern: Malformed line continuation spacing
Issue: -
Checks that the backslash of a line continuation is separated from preceding text by exactly one space (default) or zero spaces.
# bad
'a'\
'b' \
'c'
# good
'a' \
'b' \
'c'