Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 9b259dc

Browse files
committed
Fix typo.
1 parent cd9afe1 commit 9b259dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_dash/jupyter_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
def _get_skip(error: Exception):
2424
tb = traceback.format_exception(type(error), error, error.__traceback__)
2525
skip = 0
26-
for i, line in enumerate(text):
26+
for i, line in enumerate(tb):
2727
if "%% callback invoked %%" in line:
2828
skip = i + 1
2929
break

0 commit comments

Comments
 (0)