We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722419a commit dc761dcCopy full SHA for dc761dc
lib/elements/empty_d_object.py
@@ -31,5 +31,11 @@ def shape(self):
31
def first_stitch(self):
32
return None
33
34
+ @property
35
+ def color(self):
36
+ # We are not able to sitch this element, but some method calling the element may require a color definition.
37
+ # So let's simply define a black color
38
+ return 'black'
39
+
40
def to_stitch_groups(self, last_stitch_group, next_element=None):
41
return []
0 commit comments