Skip to content

Commit 5025eba

Browse files
authored
Merge pull request #44 from cifkao/patch-1
Fix Annotation attributes
2 parents b004855 + 0863e61 commit 5025eba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

muspy/classes.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@ class Annotation(Base):
245245
246246
"""
247247

248-
_attributes = OrderedDict([("time", int), ("annotation", str)])
248+
_attributes = OrderedDict([
249+
("time", int), ("annotation", object), ("group", str)
250+
])
249251
_optional_attributes = ["group"]
250252

251253
def __init__(

0 commit comments

Comments
 (0)