doc
(cls)
| 113 | |
| 114 | @classmethod |
| 115 | def get_puppet(cls) -> Puppet: |
| 116 | """doc""" |
| 117 | if cls._puppet is None: |
| 118 | raise AttributeError('puppet not found') |
| 119 | return cls._puppet |
| 120 | |
| 121 | @classmethod |
| 122 | def get_wechaty(cls) -> Wechaty: |
no outgoing calls