black/tests/data/cases/comment_after_escaped_newline.py

21 lines
216 B
Python

def bob(): \
# pylint: disable=W9016
pass
def bobtwo(): \
\
# some comment here
pass
# output
def bob(): # pylint: disable=W9016
pass
def bobtwo():
# some comment here
pass