(self, other)
| 39 | return int(self.clock_engine.now) % self.second == 0 |
| 40 | |
| 41 | def __eq__(self, other): |
| 42 | if isinstance(other, ClockIntervalHandler): |
| 43 | return self.interval == other.interval |
| 44 | else: |
| 45 | return False |
| 46 | |
| 47 | def __hash__(self): |
| 48 | return self.second |
nothing calls this directly
no outgoing calls
no test coverage detected