()
| 115 | q = Queue() # type: Queue[Any] |
| 116 | |
| 117 | def _runner(): |
| 118 | # type: () -> None |
| 119 | q.put(autorun_commands(cmds, **kwargs)) |
| 120 | th = threading.Thread(target=_runner) |
| 121 | th.daemon = True |
| 122 | th.start() |
nothing calls this directly
no test coverage detected
searching dependent graphs…