mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
hound comments
This commit is contained in:
parent
b0a6be63ac
commit
37dc18b837
7 changed files with 8 additions and 9 deletions
|
|
@ -8,7 +8,7 @@ OpenPype
|
|||
[](https://github.com/pypeclub/pype/actions/workflows/documentation.yml) 
|
||||
|
||||
|
||||
|
||||
this
|
||||
Introduction
|
||||
------------
|
||||
|
||||
|
|
|
|||
|
|
@ -2,10 +2,8 @@ from nukescripts import autoBackdrop
|
|||
|
||||
from openpype.hosts.nuke.api import (
|
||||
NukeCreator,
|
||||
NukeCreatorError,
|
||||
maintained_selection,
|
||||
select_nodes
|
||||
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1513,8 +1513,10 @@ qt_resource_struct = b"\
|
|||
|
||||
|
||||
def qInitResources():
|
||||
QtCore.qRegisterResourceData(0x03, qt_resource_struct, qt_resource_name, qt_resource_data)
|
||||
QtCore.qRegisterResourceData(
|
||||
0x03, qt_resource_struct, qt_resource_name, qt_resource_data)
|
||||
|
||||
|
||||
def qCleanupResources():
|
||||
QtCore.qUnregisterResourceData(0x03, qt_resource_struct, qt_resource_name, qt_resource_data)
|
||||
QtCore.qUnregisterResourceData(
|
||||
0x03, qt_resource_struct, qt_resource_name, qt_resource_data)
|
||||
|
|
|
|||
|
|
@ -50,4 +50,3 @@ class AELocalPublishTestClass(AEHostFixtures, PublishTest):
|
|||
|
||||
class AEDeadlinePublishTestClass(AEHostFixtures, DeadlinePublishTest):
|
||||
"""Testing class for Deadline publishes."""
|
||||
|
||||
|
|
|
|||
|
|
@ -55,4 +55,3 @@ class MayaLocalPublishTestClass(MayaHostFixtures, PublishTest):
|
|||
|
||||
class MayaDeadlinePublishTestClass(MayaHostFixtures, DeadlinePublishTest):
|
||||
"""Testing class for Deadline publishes."""
|
||||
|
||||
|
|
|
|||
|
|
@ -66,4 +66,3 @@ class NukeLocalPublishTestClass(NukeHostFixtures, PublishTest):
|
|||
|
||||
class NukeDeadlinePublishTestClass(NukeHostFixtures, DeadlinePublishTest):
|
||||
"""Testing class for Deadline publishes."""
|
||||
|
||||
|
|
|
|||
|
|
@ -158,7 +158,9 @@ def install_thirdparty(pyproject, openpype_root, platform_name):
|
|||
with manager.counter(
|
||||
color='green',
|
||||
total=content_len and math.ceil(content_len / 2 ** 20),
|
||||
unit='MiB', leave=False) as counter:
|
||||
unit='MiB',
|
||||
leave=False
|
||||
) as counter:
|
||||
with open(temp_file, 'wb', buffering=2 ** 24) as file_handle:
|
||||
for chunk in r.iter_content(chunk_size=2 ** 20):
|
||||
file_handle.write(chunk)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue