mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-09 07:56:22 -06:00
Fix code-style
This commit is contained in:
parent
ed4d339dee
commit
ab83af3a03
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
# Copyright (c) 2017 Ultimaker B.V.
|
# Copyright (c) 2017 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
|
from typing import Set
|
||||||
|
|
||||||
from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty, pyqtSlot
|
from PyQt5.QtCore import QObject, pyqtSignal, pyqtProperty, pyqtSlot
|
||||||
|
|
||||||
|
@ -63,10 +64,10 @@ class SimpleModeSettingsManager(QObject):
|
||||||
|
|
||||||
@pyqtSlot()
|
@pyqtSlot()
|
||||||
def updateIsProfileUserCreated(self) -> None:
|
def updateIsProfileUserCreated(self) -> None:
|
||||||
quality_changes_keys = set()
|
quality_changes_keys = set() # type: Set[str]
|
||||||
|
|
||||||
if not self._machine_manager.activeMachine:
|
if not self._machine_manager.activeMachine:
|
||||||
return False
|
return
|
||||||
|
|
||||||
global_stack = self._machine_manager.activeMachine
|
global_stack = self._machine_manager.activeMachine
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue