mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
Fix typing
This commit is contained in:
parent
0c43b4a180
commit
69293a0545
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
from collections import deque
|
from collections import deque
|
||||||
import os
|
import os
|
||||||
from typing import TYPE_CHECKING, Optional, List, Dict, Any, Deque
|
from typing import TYPE_CHECKING, Optional, List, Dict, Any
|
||||||
|
|
||||||
from PyQt5.QtCore import QUrl, Qt, pyqtSlot, pyqtProperty, pyqtSignal
|
from PyQt5.QtCore import QUrl, Qt, pyqtSlot, pyqtProperty, pyqtSignal
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ class WelcomePagesModel(ListModel):
|
||||||
|
|
||||||
self._current_page_index = 0
|
self._current_page_index = 0
|
||||||
# Store all the previous page indices so it can go back.
|
# Store all the previous page indices so it can go back.
|
||||||
self._previous_page_indices_stack = deque() # type: Deque[int]
|
self._previous_page_indices_stack = deque() # type: deque
|
||||||
|
|
||||||
allFinished = pyqtSignal() # emitted when all steps have been finished
|
allFinished = pyqtSignal() # emitted when all steps have been finished
|
||||||
currentPageIndexChanged = pyqtSignal()
|
currentPageIndexChanged = pyqtSignal()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue