mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-19 00:05:56 +08:00
Add typing
This commit is contained in:
parent
be5c1c8596
commit
eea340d57a
@ -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
|
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
|
||||||
|
|
||||||
|
|
||||||
class BlockSlicingDecorator(SceneNodeDecorator):
|
class BlockSlicingDecorator(SceneNodeDecorator):
|
||||||
def __init__(self):
|
def __init__(self) -> None:
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
def isBlockSlicing(self):
|
def isBlockSlicing(self) -> bool:
|
||||||
return True
|
return True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user