Made statement imports explicit

This commit is contained in:
2025-12-16 12:18:50 -08:00
parent 8a825c8164
commit 878bdcc8c8
3 changed files with 9 additions and 7 deletions

View File

@@ -2,10 +2,13 @@
# (c) 2018 Jamie Hardt
import re
from collections import namedtuple
from typing import Any, TextIO, List
from typing import TextIO, List
from .statements import *
from .statements import (StmtCdlSat, StmtCdlSop, StmtFrmc, StmtRemark,
StmtTitle, StmtUnrecognized, StmtFCM, StmtAudioExt,
StmtClipName, StmtEffectsName, StmtEvent,
StmtSourceFile, StmtSplitEdit, StmtMotionMemory,
StmtSourceUMID)
from .util import collimate

View File

@@ -160,4 +160,3 @@ class TestParse(TestCase):
for event in edl.events:
if event.number == 1:
...