ayon-core/openpype/hosts/unreal/api/plugin.py
Ondřej Samohel 5d476f8f8b
♻️ remove redundant Creator stub
this caused empty item in creator dialog
2022-10-20 12:53:25 +02:00

9 lines
209 B
Python

# -*- coding: utf-8 -*-
from abc import ABC
from openpype.pipeline import LoaderPlugin
class Loader(LoaderPlugin, ABC):
"""This serves as skeleton for future OpenPype specific functionality"""
pass