Placeholder iterator function with ignored description parameter.
(iterable, description='')
| 77 | |
| 78 | |
| 79 | def iter_with_description(iterable, description=''): |
| 80 | "Placeholder iterator function with ignored description parameter." |
| 81 | return iter(iterable) |
| 82 | |
| 83 | |
| 84 | PROGRESS = iter_with_description |