Implemented Cdl ASC_SAT

This commit is contained in:
2025-12-16 11:10:08 -08:00
parent 6c7f7d2de1
commit 2483e7fe43
3 changed files with 17 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
# pycmx
# (c) 2018 Jamie Hardt
from pycmx.statements import StmtTitle
from .parse_cmx_statements import (
StmtUnrecognized, StmtEvent, StmtSourceUMID)
from .event import Event
@@ -16,7 +17,7 @@ class EditList:
"""
def __init__(self, statements):
self.title_statement = statements[0]
self.title_statement: StmtTitle = statements[0]
self.event_statements = statements[1:]
@property
@@ -90,8 +91,6 @@ class EditList:
else:
event_statements.append(stmt)
elif type(stmt) is StmtSourceUMID:
break
else:
event_statements.append(stmt)