Skip to content

Commit 2e34c77

Browse files
committed
Autoformat with darker
1 parent 44bffab commit 2e34c77

1 file changed

Lines changed: 13 additions & 9 deletions

File tree

IPython/core/tests/test_debugger.py

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ def test_ipdb_magics():
139139
<BLANKLINE>
140140
ipdb> continue
141141
142-
Restore previous trace function, e.g. for coverage.py
143-
142+
Restore previous trace function, e.g. for coverage.py
143+
144144
In [6]: sys.settrace(old_trace)
145145
'''
146146

@@ -506,13 +506,17 @@ def test_decorator_skip_with_breakpoint():
506506
child.expect_exact("--> 47 bar(3, 4)")
507507
extra_step = []
508508

509-
for input_, expected in [
510-
(f"b {name}.py:3", ""),
511-
] + extra_step + [
512-
("step", "1---> 3 pass # should not stop here except"),
513-
("step", "---> 38 @pdb_skipped_decorator"),
514-
("continue", ""),
515-
]:
509+
for input_, expected in (
510+
[
511+
(f"b {name}.py:3", ""),
512+
]
513+
+ extra_step
514+
+ [
515+
("step", "1---> 3 pass # should not stop here except"),
516+
("step", "---> 38 @pdb_skipped_decorator"),
517+
("continue", ""),
518+
]
519+
):
516520
child.expect("ipdb>")
517521
child.sendline(input_)
518522
child.expect_exact(input_)

0 commit comments

Comments
 (0)