(text)
| 304 | |
| 305 | |
| 306 | def process_text(text): |
| 307 | global mute |
| 308 | global Running |
| 309 | global Sleeping |
| 310 | print(text) |
| 311 | if not mute and not Sleeping and Running: |
| 312 | handle_completed_sentence(text) |
| 313 | |
| 314 | mute = False |
| 315 | recorder = None |
nothing calls this directly
no test coverage detected