run black on test_source_multiline_block.py
This commit is contained in:
parent
57a55cd0a3
commit
9ed1289b01
|
@ -12,10 +12,13 @@ def test_getstartingblock_multiline():
|
||||||
see hhatto/autopep8#307). It was considered better to just move this single test to its own
|
see hhatto/autopep8#307). It was considered better to just move this single test to its own
|
||||||
file and exclude it from autopep8 than try to complicate things.
|
file and exclude it from autopep8 than try to complicate things.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
class A(object):
|
class A(object):
|
||||||
|
|
||||||
def __init__(self, *args):
|
def __init__(self, *args):
|
||||||
frame = sys._getframe(1)
|
frame = sys._getframe(1)
|
||||||
self.source = _pytest._code.Frame(frame).statement
|
self.source = _pytest._code.Frame(frame).statement
|
||||||
|
|
||||||
# fmt: off
|
# fmt: off
|
||||||
x = A('x',
|
x = A('x',
|
||||||
'y'
|
'y'
|
||||||
|
|
Loading…
Reference in New Issue