check the plugins whether
(self, name: str)
| 783 | self._plugin_status.pop(name) |
| 784 | |
| 785 | def _check_plugins(self, name: str) -> None: |
| 786 | """ |
| 787 | check the plugins whether |
| 788 | """ |
| 789 | if name not in self._plugins and name not in self._plugin_status: |
| 790 | raise WechatyPluginError(f'plugins <{name}> not exist') |
| 791 | |
| 792 | async def stop_plugin(self, name: str) -> None: |
| 793 | """stop the plugin""" |
no test coverage detected