From c79a6aaa92f7329e5c2f784c3ff70dc08b0a6762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Fri, 6 May 2022 00:12:11 +0200 Subject: [PATCH] Fix flicker when displaying executor operations --- src/poetry/installation/executor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/poetry/installation/executor.py b/src/poetry/installation/executor.py index 8cff817d3a8..b890dc30b80 100644 --- a/src/poetry/installation/executor.py +++ b/src/poetry/installation/executor.py @@ -677,6 +677,7 @@ def _download_archive(self, operation: Install | Update, link: Link) -> Path: if progress: with self._lock: + self._sections[id(operation)].clear() progress.start() done = 0