I have a Contact model with a field like this:
#models.py
address = ArrayField(models.CharField(max_length=255, null=True), default=list)
This stores an array of email addresses. I'm creating an api and wanted this to be returned as an array of email addresses as strings but I get an array of chars instead (as in the screenshot). Can someone hint me what to do?
My serializer:
class ContactSerializer(serializers.ModelSerializer):
class Meta:
model = Contact
fields = '__all__'
EDIT:
Example address from a db record:

EDIT 2:
This is how the value looked like in pandas DataFrame just before being stored in db:

