Skip to content

Commit acff85e

Browse files
committed
Fix misspelling
1 parent 44ee5b1 commit acff85e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

auto_editor/make_layers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,9 @@ def chunkify(arr: NDArray, smap: dict[int, float]) -> Chunks:
299299

300300
if len(sources) == 1 and inp is not None:
301301
chunks = chunkify(speed_index, speed_hash)
302-
v1_compatiable = v1(inp, chunks)
302+
v1_compatible = v1(inp, chunks)
303303
else:
304-
v1_compatiable = None
304+
v1_compatible = None
305305

306306
if len(vtl) == 0 and len(atl) == 0:
307307
log.error("Timeline is empty, nothing to do.")
@@ -312,4 +312,4 @@ def chunkify(arr: NDArray, smap: dict[int, float]) -> Chunks:
312312
else:
313313
template = Template.init(inp, sr, args.audio_layout, res)
314314

315-
return v3(tb, args.background, template, vtl, atl, v1_compatiable)
315+
return v3(tb, args.background, template, vtl, atl, v1_compatible)

0 commit comments

Comments
 (0)