()
| 86 | errors: list[str] = [] |
| 87 | |
| 88 | def reader() -> None: |
| 89 | document = Document("SELECT ", len("SELECT ")) |
| 90 | while not stop.is_set(): |
| 91 | try: |
| 92 | list(completer.get_completions(document, None)) |
| 93 | except Exception: |
| 94 | errors.append(traceback.format_exc()) |
| 95 | return |
| 96 | |
| 97 | def writer() -> None: |
| 98 | n = 0 |
nothing calls this directly
no test coverage detected