mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-17 07:36:27 +00:00
8 lines
181 B
Python
8 lines
181 B
Python
from .base import importer
|
|
from ..parsers.sif import parse_sif_file
|
|
|
|
|
|
@importer("Synfig", ["sif", "sifz"])
|
|
def import_sif(file, *a, **kw):
|
|
return parse_sif_file(file, *a, **kw)
|