Remove a background shell from management (internal use only).
(cls, bash_id: str)
| 128 | |
| 129 | @classmethod |
| 130 | def _remove(cls, bash_id: str) -> None: |
| 131 | """Remove a background shell from management (internal use only).""" |
| 132 | if bash_id in cls._shells: |
| 133 | del cls._shells[bash_id] |
| 134 | |
| 135 | @classmethod |
| 136 | async def start_monitor(cls, bash_id: str) -> None: |