1
0
mirror of https://github.com/DarklightGames/io_scene_psk_psa.git synced 2025-03-03 23:32:35 +01:00

Removed typing hint on sequences function

For some reason this breaks compatibility with Blender 2.92
This commit is contained in:
Colin Basnett 2022-08-05 22:38:53 -07:00
parent 07f1c45000
commit d215ceb10c

View File

@ -22,7 +22,7 @@ class PsaReader(object):
return self.psa.bones
@property
def sequences(self) -> OrderedDict[Psa.Sequence]:
def sequences(self):
return self.psa.sequences
def read_sequence_data_matrix(self, sequence_name: str):