FRMT implementation

This commit is contained in:
2025-12-16 12:37:16 -08:00
parent 23499b140c
commit 229f6d646b
4 changed files with 33 additions and 6 deletions

View File

@@ -136,8 +136,7 @@ def _parse_remark(line, line_number) -> object:
elif line.startswith("FRMC"):
match = re.match(
r'^FRMC START:\s*(\d+)\s+FRMC END:\s*(\d+)'
r'\s+FRMC DURATION:\s*(\d+)',
line)
r'\s+FRMC DURATION:\s*(\d+)', line, re.IGNORECASE)
if match is None:
return StmtRemark(line, line_number)