do not include _m in the repr() of action objects

This commit is contained in:
Michael Hudson-Doyle 2019-05-23 13:29:04 +12:00
parent ddaf916ea6
commit f215ad536e
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def fsobj(typ):
c.__attrs_post_init__ = _set_backlinks c.__attrs_post_init__ = _set_backlinks
c.type = attributes.const(typ) c.type = attributes.const(typ)
c.id = attributes.idfield(typ) c.id = attributes.idfield(typ)
c._m = attr.ib(default=None) c._m = attr.ib(repr=None, default=None)
c = attr.s(cmp=False)(c) c = attr.s(cmp=False)(c)
return c return c
return wrapper return wrapper