From 988e147ae99ab0097b2e0e5b9aadfb9b4f35cbbb Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Fri, 15 Jan 2021 22:48:34 +0100 Subject: [PATCH] hound fixes --- pype/lib/terminal_splash.py | 2 +- start.py | 4 ++-- tools/build_dependencies.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pype/lib/terminal_splash.py b/pype/lib/terminal_splash.py index 1a7645571e..0ba2706a27 100644 --- a/pype/lib/terminal_splash.py +++ b/pype/lib/terminal_splash.py @@ -30,7 +30,7 @@ def play_animation(): frame = "".join( scanline for y, scanline in enumerate( - animation[current_frame : current_frame + frame_size] + animation[current_frame: current_frame + frame_size] ) ) diff --git a/start.py b/start.py index d47dc1080c..9c648e931c 100644 --- a/start.py +++ b/start.py @@ -110,8 +110,8 @@ if getattr(sys, 'frozen', False): paths.append(frozen_libs) os.environ["PYTHONPATH"] = os.pathsep.join(paths) -from igniter import BootstrapRepos -from igniter.tools import load_environments +from igniter import BootstrapRepos # noqa: E402 +from igniter.tools import load_environments # noqa: E402 bootstrap = BootstrapRepos() diff --git a/tools/build_dependencies.py b/tools/build_dependencies.py index f85331a787..9b3618cd15 100644 --- a/tools/build_dependencies.py +++ b/tools/build_dependencies.py @@ -8,8 +8,8 @@ it as .pyc/.pyo files and that doesn't work for hosts like Maya 2020 with their own Python interpreter and libraries. This script will take ``site-packages`` and copy them to built Pype under -``dependencies`` directory. It will then compare stuff inside with ``lib`` folder -in frozen Pype, removing duplicities from there. +``dependencies`` directory. It will then compare stuff inside with ``lib`` +folder in frozen Pype, removing duplicities from there. This must be executed after build finished and it is done by build PowerShell script.