Merge branch 'develop' into enhancement/OP-8105_Validate-Context

This commit is contained in:
Kayla Man 2024-02-29 13:21:39 +08:00
commit 259f2c4120
4 changed files with 4 additions and 4 deletions

View file

@ -136,7 +136,7 @@ class FusionLoadSequence(load.LoaderPlugin):
"render",
"plate",
"image",
"onilne",
"online",
]
representations = ["*"]
extensions = set(

View file

@ -1395,7 +1395,7 @@ class EnvironmentPrepData(dict):
if data.get("env") is None:
data["env"] = os.environ.copy()
project_name = data["project_doct"]["name"]
project_name = data["project_doc"]["name"]
if "project_settings" not in data:
data["project_settings"] = get_project_settings(project_name)

View file

@ -240,7 +240,7 @@ def run_detached_process(args, **kwargs):
Args:
*args (tuple): AYON cli arguments.
args (Iterable[str]): AYON cli arguments.
**kwargs (dict): Keyword arguments for subprocess.Popen.
Returns:

View file

@ -42,7 +42,7 @@ class CollectInstanceCommentDef(
pass
@classmethod
def apply_settings(cls, project_setting, _):
def apply_settings(cls, project_setting):
plugin_settings = project_setting["core"]["publish"].get(
"collect_comment_per_instance"
)