Skip to content

Commit 33800c8

Browse files
committed
use that runner.tracebacks is a list of tuples
1 parent 39d942a commit 33800c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/tutorial/tutorial.advanced-topics.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,12 @@ raise the exception with the stack trace:
297297
runner.task.result()
298298

299299

300-
You can also check ``runner.tracebacks`` which is a mapping from
301-
pointtraceback.
300+
You can also check ``runner.tracebacks`` which is a list of tuples with
301+
(point, traceback).
302302

303303
.. jupyter-execute::
304304

305-
for point, tb in runner.tracebacks.items():
305+
for point, tb in runner.tracebacks:
306306
print(f'point: {point}:\n {tb}')
307307

308308
Logging runners

0 commit comments

Comments
 (0)