(self, value)
| 389 | return data |
| 390 | |
| 391 | def to_python(self, value): |
| 392 | if isinstance(value, dict): |
| 393 | # Already parsed |
| 394 | return value |
| 395 | |
| 396 | data = self.parse_field_value(value) |
| 397 | return data |
| 398 | |
| 399 | def validate(self, value): |
| 400 | value = self.to_mongo(value) |