(self, x)
| 100 | return int(self.product_dict.get(x, -1)) |
| 101 | |
| 102 | def map_brand(self, x): |
| 103 | return int(self.brand_dict.get(x, -1)) |
| 104 | |
| 105 | def gen_item_block(self, item_idx): |
| 106 | neg_item = self.all_items[item_idx] |
no outgoing calls
no test coverage detected