(self, agg)
| 324 | } |
| 325 | |
| 326 | def parse_agg(self, agg): |
| 327 | agg_id, val_unit = agg |
| 328 | return { |
| 329 | '_type': 'agg', |
| 330 | 'agg_id': {'_type': self.AGG_TYPES_F[agg_id]}, |
| 331 | 'val_unit': self.parse_val_unit(val_unit), |
| 332 | } |
| 333 | |
| 334 | def parse_from(self, from_, infer_from_conditions=False): |
| 335 | return filter_nones({ |
no test coverage detected