(self)
| 349 | return len(self._priority) |
| 350 | |
| 351 | def __repr__(self): |
| 352 | return '<{}({})>'.format(self.__class__.__name__, list(self)) |
| 353 | |
| 354 | def get_index_for_name(self, name: str) -> int: |
| 355 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected