From 3027aae016194ee992ae62421c85b52f68686814 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Thu, 29 Nov 2018 22:12:11 -0800 Subject: [PATCH] Added function doc for parse_cmx3600 --- pycmx/parse_cmx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pycmx/parse_cmx.py b/pycmx/parse_cmx.py index 8a416ae..5554bbf 100644 --- a/pycmx/parse_cmx.py +++ b/pycmx/parse_cmx.py @@ -80,6 +80,7 @@ Cmx3600Event = namedtuple("Cmx3600Event",['title','number','clip_name', 'source_ 'fcm_drop']) def parse_cmx3600(file): + """Accepts the path to a CMX EDL and returns a list of all events contained therein.""" statements = parse_cmx3600_statements(file) parser = NamedTupleParser(statements) parser.expect('Title')