()
| 340 | def async_wrapper(*args, **kwargs): |
| 341 | from threading import Thread |
| 342 | def thread_target(): |
| 343 | result = wrapper_browser(*args, **kwargs) |
| 344 | async_result.set_result(result) |
| 345 | |
| 346 | thread = Thread(target=thread_target, daemon=True) |
| 347 | thread.start() |
nothing calls this directly
no test coverage detected