Use updated type definitions

CURA-9146
This commit is contained in:
c.lamboo 2022-04-21 11:29:42 +02:00
parent 773ff5fa7e
commit d0a35bad3d
7 changed files with 20 additions and 20 deletions

View file

@ -37,8 +37,8 @@ class DownloadPresenter:
self._started = False
self._progress_message = self._createProgressMessage()
self._progress = {} # type: Dict[str, Dict[str, Any]] # package_id, Dict
self._error = [] # type: List[str] # package_id
self._progress: Dict[str, Dict[str, Any]] = {}
self._error: List[str] = []
def download(self, model: SubscribedPackagesModel) -> None:
if self._started: