Get an instance by ID
(self, instance_id: str)
| 366 | await self.unregister(instance_id) |
| 367 | |
| 368 | def get(self, instance_id: str) -> UnityInstance | None: |
| 369 | """Get an instance by ID""" |
| 370 | return self._instances.get(instance_id) |
| 371 | |
| 372 | def get_default(self) -> UnityInstance | None: |
| 373 | """Get the default instance""" |
no outgoing calls
no test coverage detected