Increments progress by one, with an optional description. Useful if the caller doesn't know the total.
(self, by=1, description="")
| 37 | self.description = description |
| 38 | |
| 39 | def increment_progress(self, by=1, description=""): |
| 40 | """ |
| 41 | Increments progress by one, with an optional description. Useful if the caller doesn't know the total. |
| 42 | """ |
| 43 | self.set_progress(self.current + by, self.total, description) |
| 44 | |
| 45 | |
| 46 |
nothing calls this directly
no test coverage detected