[Bf-extensions-cvs] [29622ebd] master: mesh_tissue: correct invalid annotation

Campbell Barton noreply at git.blender.org
Mon Feb 22 13:02:25 CET 2021


Commit: 29622ebd4d98e86a39c66d2247e2f42ba13d98ff
Author: Campbell Barton
Date:   Sat Feb 20 18:28:41 2021 +1100
Branches: master
https://developer.blender.org/rBA29622ebd4d98e86a39c66d2247e2f42ba13d98ff

mesh_tissue: correct invalid annotation

typing.get_type_hints fails when setting the type to a string.

This has been commented in other uses, so it can be commented here too.

===================================================================

M	mesh_tissue/tessellate_numpy.py

===================================================================

diff --git a/mesh_tissue/tessellate_numpy.py b/mesh_tissue/tessellate_numpy.py
index 82799a83..bc6094cc 100644
--- a/mesh_tissue/tessellate_numpy.py
+++ b/mesh_tissue/tessellate_numpy.py
@@ -1921,7 +1921,7 @@ class tessellate(Operator):
             max=1,
             description="Automatically set crease for open edges"
             )
-    working_on : ""
+    # working_on : ""
 
     def draw(self, context):
         allowed_obj = ('MESH', 'CURVE', 'SURFACE', 'FONT', 'META')



More information about the Bf-extensions-cvs mailing list