Skip to content

Commit

Permalink
Fix default type
Browse files Browse the repository at this point in the history
  • Loading branch information
remia committed Oct 17, 2020

Verified

This commit was signed with the committer’s verified signature.
sanjayankur31 Ankur Sinha
1 parent f7923cc commit 9274b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clairmeta/dcp_utils.py
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ def list_cpl_assets(
"""
for reel in cpl['Info']['CompositionPlaylist']['ReelList']:
assets = reel.get('Assets', [])
assets = reel.get('Assets', {})
assets = {k: v for k, v in six.iteritems(assets) if k in filters}

if required_keys:

0 comments on commit 9274b85

Please sign in to comment.