(cls)
| 32 | |
| 33 | @classmethod |
| 34 | def instance(cls): |
| 35 | if cls._instance is None: |
| 36 | cls._instance = cls() |
| 37 | return cls._instance |
| 38 | |
| 39 | def set_hook(self, *args, **kwargs): |
| 40 | # We don't consider the pre_prompt_hook because we don't have |
no outgoing calls
no test coverage detected