(progress)
| 203 | em = eventManager() |
| 204 | |
| 205 | def progressCb(progress): |
| 206 | em.fire( |
| 207 | Events.CLOUD_DOWNLOAD, { |
| 208 | "type": "progress", |
| 209 | "id": print_file_id, |
| 210 | "progress": progress |
| 211 | } |
| 212 | ) |
| 213 | |
| 214 | def successCb(destFile, fileInfo): |
| 215 | if fileInfo is True: |
no test coverage detected