mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-15 05:33:26 +01:00
8 lines
198 B
Python
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
|