(transcriber, textbox)
| 13 | textbox.insert("0.0", text) |
| 14 | |
| 15 | def update_transcript_UI(transcriber, textbox): |
| 16 | transcript_string = transcriber.get_transcript() |
| 17 | write_in_textbox(textbox, transcript_string) |
| 18 | textbox.after(300, update_transcript_UI, transcriber, textbox) |
| 19 | |
| 20 | def clear_context(transcriber, speaker_queue, mic_queue): |
| 21 | transcriber.clear_transcript_data() |
no test coverage detected