Merge pull request 'fix' (#192) from bugfix/189-codepost into release

Reviewed-on: https://gitea.pangea.org/trustchain-oc1-orchestral/IdHub/pulls/192
This commit is contained in:
cayop 2024-03-18 12:09:08 +00:00
commit b5416990a6
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ class ImportForm(forms.Form):
props = self.json_schema.get("properties", {})
# Forze than pandas read one column as string
dtype_dict = {"phoneNumber": str}
dtype_dict = {"phoneNumber": str, 'postCode': str}
df = pd.read_excel(data, dtype=dtype_dict)
df.fillna('', inplace=True)