use 'set' for 'representations' attribute

This commit is contained in:
Jakub Trllo 2024-04-09 17:26:28 +02:00
parent 17e7c9ff00
commit 43b4be851e
123 changed files with 135 additions and 135 deletions

View file

@ -5,7 +5,7 @@ from ayon_core.pipeline import load
class CopyFile(load.LoaderPlugin):
"""Copy the published file to be pasted at the desired location"""
representations = ["*"]
representations = {"*"}
product_types = {"*"}
label = "Copy File"

View file

@ -5,7 +5,7 @@ from ayon_core.pipeline import load
class CopyFilePath(load.LoaderPlugin):
"""Copy published file path to clipboard"""
representations = ["*"]
representations = {"*"}
product_types = {"*"}
label = "Copy File Path"

View file

@ -26,7 +26,7 @@
# is_multiple_contexts_compatible = True
# sequence_splitter = "__sequence_splitter__"
#
# representations = ["*"]
# representations = {"*"}
# product_types = {"*"}
# tool_names = ["library_loader"]
#

View file

@ -28,7 +28,7 @@ class Delivery(load.ProductLoaderPlugin):
is_multiple_contexts_compatible = True
sequence_splitter = "__sequence_splitter__"
representations = ["*"]
representations = {"*"}
product_types = {"*"}
tool_names = ["library_loader"]

View file

@ -19,7 +19,7 @@ class OpenFile(load.LoaderPlugin):
"""Open Image Sequence or Video with system default"""
product_types = {"render2d"}
representations = ["*"]
representations = {"*"}
label = "Open"
order = -10

View file

@ -11,7 +11,7 @@ class PushToLibraryProject(load.ProductLoaderPlugin):
is_multiple_contexts_compatible = True
representations = ["*"]
representations = {"*"}
product_types = {"*"}
label = "Push to Library project"