mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
Fix mypy complaint
CURA-7454
This commit is contained in:
parent
567f6dabdc
commit
f26445a914
1 changed files with 1 additions and 1 deletions
|
@ -648,7 +648,7 @@ class CuraApplication(QtApplication):
|
|||
return self._global_container_stack
|
||||
|
||||
@override(Application)
|
||||
def setGlobalContainerStack(self, stack: Optional[GlobalStack]) -> None:
|
||||
def setGlobalContainerStack(self, stack: Optional["GlobalStack"]) -> None:
|
||||
self._setLoadingHint(self._i18n_catalog.i18nc("@info:progress", "Initializing Active Machine..."))
|
||||
super().setGlobalContainerStack(stack)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue