(self, item: int)
| 247 | core.BNFreeDatabase(self.handle) |
| 248 | |
| 249 | def __getitem__(self, item: int) -> Optional[Snapshot]: |
| 250 | return self.get_snapshot(item) |
| 251 | |
| 252 | def get_snapshot(self, id: int) -> Optional[Snapshot]: |
| 253 | """Get a snapshot by its id, or None if no snapshot with that id exists""" |
nothing calls this directly
no test coverage detected