mirror of https://github.com/Textualize/rich.git
remove finally
This commit is contained in:
parent
af0327d182
commit
dbeb776c90
|
@ -505,12 +505,17 @@ class Segment(NamedTuple):
|
|||
pos = end_pos
|
||||
break
|
||||
|
||||
try:
|
||||
if end_pos == cut:
|
||||
add_segment(segment)
|
||||
yield split_segments[:]
|
||||
del split_segments[:]
|
||||
pos = end_pos
|
||||
try:
|
||||
cut = next(iter_cuts)
|
||||
except StopIteration:
|
||||
if split_segments:
|
||||
yield split_segments[:]
|
||||
return
|
||||
break
|
||||
else:
|
||||
before, segment = segment.split_cells(cut - pos)
|
||||
|
@ -518,7 +523,7 @@ class Segment(NamedTuple):
|
|||
yield split_segments[:]
|
||||
del split_segments[:]
|
||||
pos = cut
|
||||
finally:
|
||||
|
||||
try:
|
||||
cut = next(iter_cuts)
|
||||
except StopIteration:
|
||||
|
|
Loading…
Reference in New Issue