21 lines
216 B
Python
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
|