(self, **kwargs)
| 340 | field_type = "string" |
| 341 | |
| 342 | def __init__(self, **kwargs): |
| 343 | if kwargs.get("facet_class") is None: |
| 344 | kwargs["facet_class"] = FacetDecimalField |
| 345 | |
| 346 | super().__init__(**kwargs) |
| 347 | |
| 348 | def prepare(self, obj): |
| 349 | return self.convert(super().prepare(obj)) |