Removing dead code

This commit is contained in:
Ozbolt Menegatti 2019-06-02 12:50:43 +02:00
parent 44f0a6762e
commit 5b9859af3e

View File

@ -401,9 +401,6 @@ class ComponentRendition:
matches.representations[cid] = None matches.representations[cid] = None
else: else:
matches.representations[cid] = " ".join(("" if r is None else r) for r in reps) matches.representations[cid] = " ".join(("" if r is None else r) for r in reps)
def __str__(self):
return str(self.rendition)
class ComponentStatus(Enum): class ComponentStatus(Enum):