(self, x)
| 103 | return int(self.product_dict.get(x, -1)) |
| 104 | |
| 105 | def map_brand(self, x): |
| 106 | return int(self.brand_dict.get(x, -1)) |
| 107 | |
| 108 | def gen_neg_hist(self, length): |
| 109 | if len(self.neg_hist_catch.get(length, [1])) == self.max_catch_num: |
no outgoing calls
no test coverage detected