(suno_cookie: SunoCookie)
| 60 | |
| 61 | |
| 62 | def keep_alive(suno_cookie: SunoCookie): |
| 63 | while True: |
| 64 | try: |
| 65 | update_token(suno_cookie) |
| 66 | except Exception as e: |
| 67 | print(e) |
| 68 | finally: |
| 69 | time.sleep(5) |
| 70 | |
| 71 | |
| 72 | def start_keep_alive(suno_cookie: SunoCookie): |
nothing calls this directly
no test coverage detected