black/tests/data/comment_after_escaped_newline.py

19 lines
212 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