Describe the bug
The leave option of the stqdm progress bar should have an effect not only for the inherited tqdm. The change below should fix this.
Current:
def close(self):
super().close()
self.st_clear()
Proposed change:
def close(self):
super().close()
if self.leave is False: # <-- Check if leave is desired
self.st_clear()
Describe the bug
The leave option of the
stqdmprogress bar should have an effect not only for the inheritedtqdm. The change below should fix this.Current:
Proposed change: