From 9464b3739a3e2500b3489cf3a283a5b89ebb0acd Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Wed, 28 Feb 2024 18:02:22 +0100 Subject: [PATCH 1/2] fix collect comment --- client/ayon_core/plugins/publish/collect_comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/plugins/publish/collect_comment.py b/client/ayon_core/plugins/publish/collect_comment.py index 458c0a5658..980097ac0d 100644 --- a/client/ayon_core/plugins/publish/collect_comment.py +++ b/client/ayon_core/plugins/publish/collect_comment.py @@ -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" ) From ffc4bf19e77c21fa0371c1dfba48f0c0adc1a25e Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Wed, 28 Feb 2024 18:36:04 +0100 Subject: [PATCH 2/2] fix docstring of 'run_detached_process' --- client/ayon_core/lib/execute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/lib/execute.py b/client/ayon_core/lib/execute.py index 4e3257c3a0..e89c8f22ee 100644 --- a/client/ayon_core/lib/execute.py +++ b/client/ayon_core/lib/execute.py @@ -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: