improving name filter

This commit is contained in:
Vinicius Moreira
2019-09-02 16:19:47 -03:00
parent b15420625e
commit 68cc5370e8
6 changed files with 230 additions and 132 deletions

View File

@@ -10,10 +10,9 @@ class PackageViewStatus(Enum):
class PackageView:
def __init__(self, model: SoftwarePackage, visible: bool = True):
def __init__(self, model: SoftwarePackage):
self.model = model
self.update_checked = model.update
self.visible = visible
self.status = PackageViewStatus.LOADING
def __repr__(self):