Skip to content

Commit 3fb5567

Browse files
committed
support for blender 4.4 (#13)
1 parent 683bc02 commit 3fb5567

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ops/start.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ class UVGAMI_OT_start(bpy.types.Operator):
3838
bl_label = "Unwrap"
3939
bl_description = "Start UV unwrap process"
4040

41-
def __init__(self):
41+
def __init__(self, *args, **kwargs):
42+
super().__init__(*args, **kwargs)
4243
self.reset_variables()
4344

4445
def reset_variables(self):

0 commit comments

Comments
 (0)