Fix bug: typo in variable name

This commit is contained in:
Nino van Hooff 2020-02-28 16:25:28 +01:00
parent 86fb0383de
commit 234acf0904

View file

@ -136,7 +136,7 @@ class DrivePluginExtension(QObject, Extension):
self._drive_api_service.getBackups(self._backupsChangedCallback)
def _backupsChangedCallback(self, backups):
self.backups = backups
self._backups = backups
self.backupsChanged.emit()
@pyqtProperty(bool, notify = restoringStateChanged)