Returns the count dynamically.
(self)
| 727 | # Changing the name would be confusing (since we use count of an array everywhere else), so this is more important |
| 728 | @property |
| 729 | def count(self) -> int: |
| 730 | """Returns the count dynamically.""" |
| 731 | return self.vol.count |
| 732 | |
| 733 | @count.setter |
| 734 | def count(self, value: int) -> None: |
no outgoing calls