remove plugin
(self, name: str)
| 776 | yield plugin |
| 777 | |
| 778 | def remove_plugin(self, name: str) -> None: |
| 779 | """remove plugin""" |
| 780 | if name not in self._plugins: |
| 781 | raise WechatyPluginError(f'plugin {name} not exist') |
| 782 | self._plugins.pop(name) |
| 783 | self._plugin_status.pop(name) |
| 784 | |
| 785 | def _check_plugins(self, name: str) -> None: |
| 786 | """ |
nothing calls this directly
no test coverage detected