add newline to fix overwriting in parallel progress

This commit is contained in:
Neil Botelho 2023-11-19 19:45:13 +05:30
parent a55e3962e0
commit 0290b4d14b
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ class RenderableLines:
if idx != 0:
yield Segment.line()
yield from line.__rich_console__(console, options)
yield Segment.line()
class PipProgress(Progress):