diff --git a/openpype/hosts/testhost/plugins/create/test_creator_1.py b/openpype/hosts/testhost/plugins/create/test_creator_1.py index edb946424a..6ec4d16467 100644 --- a/openpype/hosts/testhost/plugins/create/test_creator_1.py +++ b/openpype/hosts/testhost/plugins/create/test_creator_1.py @@ -9,6 +9,7 @@ from openpype.pipeline import ( class TestCreatorOne(Creator): identifier = "test_one" + label = "test" family = "test" description = "Testing creator of testhost" diff --git a/openpype/hosts/testhost/plugins/create/test_creator_2.py b/openpype/hosts/testhost/plugins/create/test_creator_2.py index b3f04bd511..4b1430a6a2 100644 --- a/openpype/hosts/testhost/plugins/create/test_creator_2.py +++ b/openpype/hosts/testhost/plugins/create/test_creator_2.py @@ -8,6 +8,7 @@ from openpype.pipeline import ( class TestCreatorTwo(Creator): identifier = "test_two" + label = "test" family = "test" description = "A second testing creator"