mirror of
https://github.com/iluvcapra/pycmx.git
synced 2026-01-02 09:50:55 +00:00
Made statement imports explicit
This commit is contained in:
@@ -2,10 +2,13 @@
|
|||||||
# (c) 2018 Jamie Hardt
|
# (c) 2018 Jamie Hardt
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from collections import namedtuple
|
from typing import TextIO, List
|
||||||
from typing import Any, 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
|
from .util import collimate
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -160,4 +160,3 @@ class TestParse(TestCase):
|
|||||||
for event in edl.events:
|
for event in edl.events:
|
||||||
if event.number == 1:
|
if event.number == 1:
|
||||||
...
|
...
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user