Use explicit key-word arguments instead of kwargs

Makes it easier to use, and better self-documenting.

Contributes to issue CURA-5330.
This commit is contained in:
Ghostkeeper 2018-06-04 12:58:56 +02:00
parent c6ac344ed5
commit 68ddf443a1
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -13,9 +13,9 @@ from cura.Settings.SettingOverrideDecorator import SettingOverrideDecorator
## Scene nodes that are models are only seen when selecting the corresponding build plate
# Note that many other nodes can just be UM SceneNode objects.
class CuraSceneNode(SceneNode):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
if "no_setting_override" not in kwargs:
def __init__(self, parent: Optional["SceneNode"] = None, visible: bool = True, name: str = "", no_settings_override: bool = False):
super().__init__(parent = parent, visible = visible, name = name)
if not "no_setting_override":
self.addDecorator(SettingOverrideDecorator()) # now we always have a getActiveExtruderPosition, unless explicitly disabled
self._outside_buildarea = False