(self)
| 99 | ) |
| 100 | |
| 101 | def _update_progress(self): |
| 102 | if config.PROGRESSBAR_DISABLED: |
| 103 | return |
| 104 | |
| 105 | self.progressbar.total = self.total |
| 106 | self.progressbar.n = self.completed |
| 107 | self.progressbar.update(0) |
| 108 | |
| 109 | async def put(self, item): |
| 110 | await self.q.put(item) |
no outgoing calls
no test coverage detected