(self, current, total, description="")
| 31 | |
| 32 | |
| 33 | def set_progress(self, current, total, description=""): |
| 34 | self.current = current |
| 35 | self.total = total |
| 36 | if description: |
| 37 | self.description = description |
| 38 | |
| 39 | def increment_progress(self, by=1, description=""): |
| 40 | """ |