Fixed Blender 4.3 compatiblity error

This commit is contained in:
Colin Basnett
2024-12-04 18:50:49 -08:00
parent 79ea131f64
commit 9b0df1c942
2 changed files with 4 additions and 3 deletions

View File

@@ -203,7 +203,8 @@ class PSA_OT_export(Operator, ExportHelper):
maxlen=1024,
default='')
def __init__(self):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.armature_object = None
@classmethod

View File

@@ -8,8 +8,8 @@ from .properties import PSA_PG_export_action_list_item, filter_sequences
class PSA_UL_export_sequences(UIList):
bl_idname = 'PSA_UL_export_sequences'
def __init__(self):
super(PSA_UL_export_sequences, self).__init__()
def __init__(self, *args, **kwargs):
super(PSA_UL_export_sequences, self).__init__(*args, **kwargs)
# Show the filtering options by default.
self.use_filter_show = True