Improved comment and typing information

This commit is contained in:
Colin Basnett
2022-11-01 11:32:50 -07:00
parent b6ef3dda44
commit 4181a15d0e
2 changed files with 10 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ from ..data import *
"""
Note that keys are not stored within the Psa object.
Use the PsaReader::get_sequence_keys to get a the keys for a sequence.
Use the PsaReader::get_sequence_keys to get the keys for a sequence.
"""
@@ -60,5 +60,5 @@ class Psa(object):
def __init__(self):
self.bones: List[Psa.Bone] = []
self.sequences: typing.OrderedDict[Psa.Sequence] = OrderedDict()
self.sequences: typing.OrderedDict[str, Psa.Sequence] = OrderedDict()
self.keys: List[Psa.Key] = []