Skip to content

Commit

Permalink
Fix BaseField.__repr__
Browse files Browse the repository at this point in the history
  • Loading branch information
lafrech committed Apr 18, 2020
1 parent b69167b commit b7039a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions umongo/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,13 +160,12 @@ def __repr__(self):
'attribute={self.attribute!r}, '
'validate={self.validate}, required={self.required}, '
'load_only={self.load_only}, dump_only={self.dump_only}, '
'marshmallow_missing={self.marshmallow_missing}, '
'marshmallow_default={self.marshmallow_default}, '
'allow_none={self.allow_none}, '
'error_messages={self.error_messages}, '
'io_validate={self.io_validate}, '
'io_validate_recursive={self.io_validate_recursive}, '
'unique={self.unique}, '
'marshmallow_kwargs={self._ma_kwargs!r}, '
'instance={self.instance})>'
.format(ClassName=self.__class__.__name__, self=self))

Expand Down

0 comments on commit b7039a7

Please sign in to comment.