From 29622ebd4d98e86a39c66d2247e2f42ba13d98ff Mon Sep 17 00:00:00 2001 From: Campbell Barton <ideasman42@gmail.com> Date: Sat, 20 Feb 2021 18:28:41 +1100 Subject: [PATCH] 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. --- mesh_tissue/tessellate_numpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesh_tissue/tessellate_numpy.py b/mesh_tissue/tessellate_numpy.py index 82799a833..bc6094ccd 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') -- GitLab