Skip to content

Commit 68b16fc

Browse files
committed
fix convert_lottie_python.py
1 parent 7ca7b45 commit 68b16fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tstickers/convert_rlottie_python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def convertAnimated(
7373

7474
fps = [None, 30, 20, 15, 12][min(4, max(0, frameSkip))]
7575

76-
with concurrent.futures.ProcessPoolExecutor(max_workers=threads) as executor:
76+
with concurrent.futures.ThreadPoolExecutor(max_workers=threads) as executor:
7777
# Using list comprehension to submit tasks to the executor
7878
future_to_variable = {
7979
executor.submit(convert_single_tgs, stckr, fps, scale): stckr

0 commit comments

Comments
 (0)