Skip to content

Commit c8e9222

Browse files
committed
typing fix
1 parent 1d74348 commit c8e9222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rich/traceback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ def render_stack(stack: Stack, last: bool) -> RenderResult:
636636

637637
if stack.is_group:
638638
for group_no, group_exception in enumerate(stack.exceptions, 1):
639-
grouped_exceptions: list[Group] = []
639+
grouped_exceptions: List[Group] = []
640640
for group_last, group_stack in loop_last(group_exception.stacks):
641641
grouped_exceptions.append(render_stack(group_stack, group_last))
642642
yield Constrain(

0 commit comments

Comments
 (0)