(self, bids: list[str])
| 413 | return dom |
| 414 | |
| 415 | def get_rect_data(self, bids: list[str]) -> list[dict[str]]: |
| 416 | res = [] |
| 417 | for bid in bids: |
| 418 | label = self.bids2label.get(bid, '') |
| 419 | rect = self.rect.get(bid, None) |
| 420 | res.append({ |
| 421 | 'bid': bid, |
| 422 | 'label': label, |
| 423 | 'rect': rect |
| 424 | }) |
| 425 | return res |
| 426 |
nothing calls this directly
no outgoing calls
no test coverage detected