Returns current value and increments display by one.
(self)
| 840 | return self |
| 841 | |
| 842 | def __next__(self): |
| 843 | """Returns current value and increments display by one.""" |
| 844 | self.progress += 1 |
| 845 | if self.progress < self.total: |
| 846 | return self.progress |
| 847 | else: |
| 848 | raise StopIteration() |
| 849 | |
| 850 | class JSON(DisplayObject): |
| 851 | """JSON expects a JSON-able dict or list |
nothing calls this directly
no outgoing calls
no test coverage detected