(self)
| 87 | cb.trigger_step() |
| 88 | |
| 89 | def _trigger_epoch(self): |
| 90 | tm = CallbackTimeLogger() |
| 91 | |
| 92 | for cb in self.cbs: |
| 93 | display_name = str(cb) |
| 94 | with tm.timed_callback(display_name): |
| 95 | cb.trigger_epoch() |
| 96 | tm.log() |
| 97 | |
| 98 | def _before_epoch(self): |
| 99 | for cb in self.cbs: |
nothing calls this directly
no test coverage detected