Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions progressbar/progressbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,12 @@ def __next__(self):
# an iterator.
next = __next__

def __enter__(self):
self.start()
return self

def __exit__(self, type, value, traceback):
self.finish()

def _env_size(self):
"""Tries to find the term_width from the environment."""
Expand Down