Add missing typing

CURA-7150
This commit is contained in:
Jaime van Kessel 2020-03-16 17:20:59 +01:00
parent 96ed85f9c0
commit 4e8da5d7fd
No known key found for this signature in database
GPG key ID: 3710727397403C91
2 changed files with 8 additions and 8 deletions

View file

@ -135,7 +135,7 @@ class DrivePluginExtension(QObject, Extension):
def refreshBackups(self) -> None:
self._drive_api_service.getBackups(self._backupsChangedCallback)
def _backupsChangedCallback(self, backups):
def _backupsChangedCallback(self, backups: List[Dict[str, Any]]) -> None:
self._backups = backups
self.backupsChanged.emit()