Get a background shell by ID.
(cls, bash_id: str)
| 118 | |
| 119 | @classmethod |
| 120 | def get(cls, bash_id: str) -> BackgroundShell | None: |
| 121 | """Get a background shell by ID.""" |
| 122 | return cls._shells.get(bash_id) |
| 123 | |
| 124 | @classmethod |
| 125 | def get_available_ids(cls) -> list[str]: |
no outgoing calls