Skip to content

Commit 42c8ce1

Browse files
committed
black
Signed-off-by: Kirill Ignatev <kiri11@users.noreply.github.com>
1 parent 0af3249 commit 42c8ce1

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

tests/unit/test_traceback_formatter.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,9 @@ def test_traceback_formatter_with_source_lineno_out_of_range():
269269

270270
# WHEN
271271
source_data = ""
272-
with patch("builtins.open", mock_open(read_data=source_data)), patch(
273-
"os.path.exists", return_value=True
272+
with (
273+
patch("builtins.open", mock_open(read_data=source_data)),
274+
patch("os.path.exists", return_value=True),
274275
):
275276
lines = list(format_thread(thread, NativeReportingMode.OFF))
276277

0 commit comments

Comments
 (0)