[ui] improvement -> removing spaces from package type parentheses

This commit is contained in:
Vinicius Moreira
2020-09-11 11:24:25 -03:00
parent c18eab8d62
commit cd7984bc82

View File

@@ -33,7 +33,7 @@ class PackageView:
self.status = PackageViewStatus.LOADING if model.status == PackageStatus.LOADING_DATA else PackageViewStatus.READY
def __repr__(self):
return '{} ( {} )'.format(self.model.name, self.get_type_label())
return '{} ({})'.format(self.model.name, self.get_type_label())
def __eq__(self, other):
if isinstance(other, PackageView):