(
self, product: str
)
| 29 | return self.data["products"].keys() |
| 30 | |
| 31 | def product_information( |
| 32 | self, product: str |
| 33 | ) -> Optional[Dict[str, Union[int, float]]]: |
| 34 | return self.data["products"].get(product, None) |
| 35 | |
| 36 | |
| 37 | class Ui: |
no test coverage detected