Drop __repr__ method on python mapper

We aren't using this pattern in the other mappers. Something we could add, but
out of scope here.
This commit is contained in:
Anthony Johnson 2016-10-25 16:27:05 -07:00
parent a5a34df7f4
commit fbe58022c5

View File

@ -94,9 +94,6 @@ class PythonPythonMapper(PythonMapperBase):
# For later
self.item_map = defaultdict(list)
def __repr__(self):
return 'Python {type}: {name}'.format(name=self.name, type=self.type)
@property
def undoc_member(self):
return self.docstring == ''