Close the application and all installed plugins.
(self)
| 841 | self.trigger_hook('app_reset') |
| 842 | |
| 843 | def close(self): |
| 844 | """ Close the application and all installed plugins. """ |
| 845 | for plugin in self.plugins: |
| 846 | if hasattr(plugin, 'close'): plugin.close() |
| 847 | |
| 848 | def run(self, **kwargs): |
| 849 | """ Calls :func:`run` with the same parameters. """ |
no outgoing calls
no test coverage detected