Files

8 lines
181 B
Python
Raw Permalink Normal View History

2026-03-01 21:36:54 +08:00
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)