From 93432c1836a2f74f2bd2e351bf235f40d1b52a6a Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 22 Dec 2020 18:56:50 +0100 Subject: [PATCH] hound fixes --- pype/lib/plugin_tools.py | 2 +- pype/plugins/global/publish/extract_review.py | 2 +- pype/plugins/global/publish/extract_review_slate.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pype/lib/plugin_tools.py b/pype/lib/plugin_tools.py index 4c96aaae8f..c39c9401c3 100644 --- a/pype/lib/plugin_tools.py +++ b/pype/lib/plugin_tools.py @@ -7,7 +7,7 @@ import re import json import tempfile -from .execute import run_subprocess, execute +from .execute import run_subprocess from pype.settings import get_project_settings diff --git a/pype/plugins/global/publish/extract_review.py b/pype/plugins/global/publish/extract_review.py index 132e5ab91e..19c9f24c98 100644 --- a/pype/plugins/global/publish/extract_review.py +++ b/pype/plugins/global/publish/extract_review.py @@ -1628,7 +1628,7 @@ class ExtractReview(pyblish.api.InstancePlugin): # run subprocess self.log.debug("Executing: {}".format(subprcs_cmd)) - output = pype.api.run_subprocess( + pype.api.run_subprocess( subprcs_cmd, shell=True, logger=self.log ) diff --git a/pype/plugins/global/publish/extract_review_slate.py b/pype/plugins/global/publish/extract_review_slate.py index 3614b1e056..65930ea8fa 100644 --- a/pype/plugins/global/publish/extract_review_slate.py +++ b/pype/plugins/global/publish/extract_review_slate.py @@ -186,7 +186,7 @@ class ExtractReviewSlate(pype.api.Extractor): # run slate generation subprocess self.log.debug("Slate Executing: {}".format(slate_subprcs_cmd)) - slate_output = pype.api.run_subprocess( + pype.api.run_subprocess( slate_subprcs_cmd, shell=True, logger=self.log ) @@ -222,7 +222,7 @@ class ExtractReviewSlate(pype.api.Extractor): # ffmpeg concat subprocess self.log.debug("Executing concat: {}".format(concat_subprcs_cmd)) - concat_output = pype.api.run_subprocess( + pype.api.run_subprocess( concat_subprcs_cmd, shell=True, logger=self.log )