Execute all registered Hooks (callbacks) for the given point.
(self, point)
| 91 | self[point].append(Hook(callback, failsafe, priority, **kwargs)) |
| 92 | |
| 93 | def run(self, point): |
| 94 | """Execute all registered Hooks (callbacks) for the given point.""" |
| 95 | self.run_hooks(iter(sorted(self[point]))) |
| 96 | |
| 97 | @classmethod |
| 98 | def run_hooks(cls, hooks): |
no test coverage detected