diff --git a/pype/hooks/celaction/prelaunch.py b/pype/hooks/celaction/prelaunch.py index 4aa4237035..72900fd8d8 100644 --- a/pype/hooks/celaction/prelaunch.py +++ b/pype/hooks/celaction/prelaunch.py @@ -29,9 +29,6 @@ class CelactionPrelaunchHook(PypeHook): self.signature = "( {} )".format(self.__class__.__name__) def execute(self, *args, env: dict = None) -> bool: - - from pprint import pformat - self.log.info(f"`{pformat(env)}`") if not env: env = os.environ @@ -73,7 +70,8 @@ class CelactionPrelaunchHook(PypeHook): env.get("PYPE_MODULE_ROOT"), "pype/hosts/celaction/celaction_template_scene.scn" ) - self.log.info(f"Creating workfile from template: `{template_path}`") + self.log.info( + f"Creating workfile from template: `{template_path}`") shutil.copy2( os.path.normpath(template_path), os.path.normpath(workfile_path) diff --git a/pype/hosts/celaction/cli.py b/pype/hosts/celaction/cli.py index daa971d8d5..6b0c2eeafa 100644 --- a/pype/hosts/celaction/cli.py +++ b/pype/hosts/celaction/cli.py @@ -2,10 +2,8 @@ import os import sys import copy import argparse -import importlib from avalon import io -import avalon.api from avalon.tools import publish import pyblish.api @@ -53,7 +51,7 @@ def cli(): help=("Height of resolution")) # parser.add_argument("--programDir", - # help=("Directory with celaction program installation")) + # help=("Directory with celaction program installation")) pype.celaction.kwargs = parser.parse_args(sys.argv[1:]).__dict__