mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
hound fixes
This commit is contained in:
parent
10686e06c5
commit
988e147ae9
3 changed files with 5 additions and 5 deletions
|
|
@ -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]
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
|||
4
start.py
4
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()
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue