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