Skip to content

Commit

Permalink
Merge pull request #1395 from glensc/patch-1
Browse files Browse the repository at this point in the history
Fix: Add display() call to close() in rich module
  • Loading branch information
casperdcl committed May 2, 2024
2 parents d774884 + d7f469e commit 7c8753f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tqdm/rich.py
Expand Up @@ -116,6 +116,7 @@ def __init__(self, *args, **kwargs):
def close(self):
if self.disable:
return
self.display() # print 100%, vis #1306
super().close()
self._prog.__exit__(None, None, None)

Expand Down

0 comments on commit 7c8753f

Please sign in to comment.