hound fixes

This commit is contained in:
Ondrej Samohel 2021-01-15 22:48:34 +01:00
parent 10686e06c5
commit 988e147ae9
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
3 changed files with 5 additions and 5 deletions

View file

@ -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]
)
)

View file

@ -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()

View file

@ -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.