()
| 8 | loading = True |
| 9 | |
| 10 | def animate(): |
| 11 | for c in itertools.cycle(['🌑', '🌒', '🌓', '🌔', '🌕', '🌖', '🌗', '🌘']): |
| 12 | if not loading: |
| 13 | break |
| 14 | sys.stdout.write('\rLOADING ' + c) |
| 15 | sys.stdout.flush() |
| 16 | time.sleep(0.1) |
| 17 | |
| 18 | def count(number): |
| 19 | result = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected