Skip to content

Commit

Permalink
Removed superfluous for-loop
Browse files Browse the repository at this point in the history
  • Loading branch information
reinecke committed Aug 2, 2023
1 parent 890363e commit 71aa618
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/otio_ale_adapter/ale.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,7 @@ def nextline(lines):
clip_generator = _read_data(
lines, columns, fps, ale_name_column_key
)
for clip in clip_generator:
collection.append(clip)
collection.extend(clip_generator)

collection.metadata["ALE"] = {
"header": header,
Expand Down

0 comments on commit 71aa618

Please sign in to comment.