Is this 0 <= index < len(self)?
(self, index: int)
| 554 | |
| 555 | @command.command("view.properties.inbounds") |
| 556 | def inbounds(self, index: int) -> bool: |
| 557 | """ |
| 558 | Is this 0 <= index < len(self)? |
| 559 | """ |
| 560 | return 0 <= index < len(self) |
| 561 | |
| 562 | # Event handlers |
| 563 | def configure(self, updated): |
no outgoing calls