wrap CollectorModel.updateEvent to update the element count
(self, event)
| 93 | self.updateCount() |
| 94 | |
| 95 | def updateEvent(self, event): |
| 96 | """ |
| 97 | wrap CollectorModel.updateEvent to update the element count |
| 98 | """ |
| 99 | CollectorModel.updateEvent(self, event) |
| 100 | self.updateCount() |
| 101 | |
| 102 | def updateCount(self): |
| 103 | """ |
nothing calls this directly
no test coverage detected