Fix typing

This commit is contained in:
Jaime van Kessel 2019-01-04 11:48:06 +01:00
parent bca070d567
commit b363be4afb
3 changed files with 3 additions and 6 deletions

View file

@ -5,7 +5,7 @@
# Constants used for the Cloud API # Constants used for the Cloud API
# --------- # ---------
DEFAULT_CLOUD_API_ROOT = "https://api.ultimaker.com" # type: str DEFAULT_CLOUD_API_ROOT = "https://api.ultimaker.com" # type: str
DEFAULT_CLOUD_API_VERSION = "1" # type: str DEFAULT_CLOUD_API_VERSION = 1 # type: int
DEFAULT_CLOUD_ACCOUNT_API_ROOT = "https://account.ultimaker.com" # type: str DEFAULT_CLOUD_ACCOUNT_API_ROOT = "https://account.ultimaker.com" # type: str
try: try:

View file

@ -3,7 +3,7 @@
import os import os
from datetime import datetime from datetime import datetime
from typing import Optional, List from typing import Optional, List, Dict, Any
from PyQt5.QtCore import QObject, pyqtSlot, pyqtProperty, pyqtSignal from PyQt5.QtCore import QObject, pyqtSlot, pyqtProperty, pyqtSignal
@ -41,7 +41,7 @@ class DrivePluginExtension(QObject, Extension):
# Local data caching for the UI. # Local data caching for the UI.
self._drive_window = None # type: Optional[QObject] self._drive_window = None # type: Optional[QObject]
self._backups = [] self._backups = [] # type: List[Dict[str, Any]]
self._is_restoring_backup = False self._is_restoring_backup = False
self._is_creating_backup = False self._is_creating_backup = False

View file

@ -31,9 +31,6 @@ i18n_catalog = i18nCatalog("cura")
## The Toolbox class is responsible of communicating with the server through the API ## The Toolbox class is responsible of communicating with the server through the API
class Toolbox(QObject, Extension): class Toolbox(QObject, Extension):
DEFAULT_CLOUD_API_ROOT = "https://api.ultimaker.com" # type: str
DEFAULT_CLOUD_API_VERSION = 1 # type: int
def __init__(self, application: CuraApplication) -> None: def __init__(self, application: CuraApplication) -> None:
super().__init__() super().__init__()