Files
Herculino Trotta 201ccea842 feat: export (WIP)
2025-02-19 13:38:00 -03:00

8 lines
198 B
Python

from import_export import fields
class EmptyStringToNoneField(fields.Field):
def clean(self, data, **kwargs):
value = super().clean(data)
return None if value == "" else value