mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Fix typing
This commit is contained in:
parent
bca070d567
commit
b363be4afb
3 changed files with 3 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
import os
|
||||
from datetime import datetime
|
||||
from typing import Optional, List
|
||||
from typing import Optional, List, Dict, Any
|
||||
|
||||
from PyQt5.QtCore import QObject, pyqtSlot, pyqtProperty, pyqtSignal
|
||||
|
||||
|
@ -41,7 +41,7 @@ class DrivePluginExtension(QObject, Extension):
|
|||
|
||||
# Local data caching for the UI.
|
||||
self._drive_window = None # type: Optional[QObject]
|
||||
self._backups = []
|
||||
self._backups = [] # type: List[Dict[str, Any]]
|
||||
self._is_restoring_backup = False
|
||||
self._is_creating_backup = False
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue