mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-17 07:36:27 +00:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
from ..parsers.baseporter import Baseporter, Loader
|
||||
|
||||
|
||||
class ImporterLoader(Loader):
|
||||
def __init__(self):
|
||||
super().__init__(__file__, __name__, "import")
|
||||
|
||||
@property
|
||||
def importers(self):
|
||||
return self.items
|
||||
|
||||
def set_options(self, parser):
|
||||
group = parser.add_argument_group("Generic input options")
|
||||
|
||||
super().set_options(parser)
|
||||
|
||||
return group
|
||||
|
||||
|
||||
importers = ImporterLoader()
|
||||
importer = importers.decorator
|
||||
Reference in New Issue
Block a user