Close the application and all installed plugins.
(self)
| 751 | self.trigger_hook('app_reset') |
| 752 | |
| 753 | def close(self): |
| 754 | ''' Close the application and all installed plugins. ''' |
| 755 | for plugin in self.plugins: |
| 756 | if hasattr(plugin, 'close'): plugin.close() |
| 757 | self.stopped = True |
| 758 | |
| 759 | def run(self, **kwargs): |
| 760 | ''' Calls :func:`run` with the same parameters. ''' |