Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Cederstrand committed Apr 24, 2024
1 parent f8ea801 commit a2922f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchangelib/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ def clean(self, value, version=None):
if not isinstance(s, str):
tmp.append(s)
continue
tmp.append(self.value_cls(**{"label": default_label, value_field_name: s})
tmp.append(self.value_cls(**{"label": default_label, value_field_name: s}))
value = tmp
return super().clean(value, version=version)

Expand Down

0 comments on commit a2922f0

Please sign in to comment.