(self, objs: list[Any])
| 531 | self.v2obj = {} |
| 532 | |
| 533 | def get_name(self, objs: list[Any]) -> list[str]: |
| 534 | self.v2obj.update({o.name: o for o in objs}) |
| 535 | return [o.name for o in objs] |
| 536 | |
| 537 | def map2obj(self, names: list[str]) -> list[Any]: |
| 538 | return [self.v2obj[n] for n in names] |
no outgoing calls
no test coverage detected