Minimal stand-in for cmdop.client.Client that SkillsResource needs.
| 53 | |
| 54 | |
| 55 | class _FakeClient: |
| 56 | """Minimal stand-in for cmdop.client.Client that SkillsResource needs.""" |
| 57 | |
| 58 | def __init__(self, transport: Transport) -> None: |
| 59 | self._t = transport |
| 60 | self.fleet_id = None |
| 61 | |
| 62 | |
| 63 | def _make_transport() -> tuple[Transport, FakeProc]: |
no outgoing calls