We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6720a3 commit 61e3a8dCopy full SHA for 61e3a8d
1 file changed
tests/test_base.py
@@ -130,7 +130,10 @@ def test_lambda_in_REPL(): # noqa: N802
130
child.sendline("print(getsource(function), end='')")
131
child.expect(">>> ")
132
133
- after = buffer.getvalue().lstrip(before)
+ after = buffer.getvalue()
134
+ print(after) # noqa: T201
135
+ print('------------') # noqa: T201
136
+ after = after.lstrip(before)
137
print(after) # noqa: T201
138
print('------------') # noqa: T201
139
after = after.splitlines()
0 commit comments