mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
use 'set' for 'representations' attribute
This commit is contained in:
parent
17e7c9ff00
commit
43b4be851e
123 changed files with 135 additions and 135 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
# is_multiple_contexts_compatible = True
|
||||
# sequence_splitter = "__sequence_splitter__"
|
||||
#
|
||||
# representations = ["*"]
|
||||
# representations = {"*"}
|
||||
# product_types = {"*"}
|
||||
# tool_names = ["library_loader"]
|
||||
#
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ class PushToLibraryProject(load.ProductLoaderPlugin):
|
|||
|
||||
is_multiple_contexts_compatible = True
|
||||
|
||||
representations = ["*"]
|
||||
representations = {"*"}
|
||||
product_types = {"*"}
|
||||
|
||||
label = "Push to Library project"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue