Unregister a PIO subprocess (call when process completes normally). Args: proc: subprocess.Popen instance to unregister
(proc: subprocess.Popen[Any])
| 250 | |
| 251 | |
| 252 | def unregister_pio_process(proc: subprocess.Popen[Any]) -> None: |
| 253 | """Unregister a PIO subprocess (call when process completes normally). |
| 254 | |
| 255 | Args: |
| 256 | proc: subprocess.Popen instance to unregister |
| 257 | """ |
| 258 | _registry.unregister(proc) |
| 259 | |
| 260 | |
| 261 | def unregister_pio_process_by_pid(pid: int) -> None: |
no test coverage detected