Add typing

This commit is contained in:
Ghostkeeper 2018-10-24 15:54:14 +02:00
parent be5c1c8596
commit eea340d57a
No known key found for this signature in database
GPG Key ID: 86BEF881AE2CF276

View File

@ -1,9 +1,12 @@
# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
class BlockSlicingDecorator(SceneNodeDecorator):
def __init__(self):
def __init__(self) -> None:
super().__init__()
def isBlockSlicing(self):
def isBlockSlicing(self) -> bool:
return True