diff --git a/README.md b/README.md index 2c2594abd1..485ae7f4ee 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ OpenPype [![documentation](https://github.com/pypeclub/pype/actions/workflows/documentation.yml/badge.svg)](https://github.com/pypeclub/pype/actions/workflows/documentation.yml) ![GitHub VFX Platform](https://img.shields.io/badge/vfx%20platform-2022-lightgrey?labelColor=303846) - +this Introduction ------------ diff --git a/openpype/hosts/nuke/plugins/create/create_backdrop.py b/openpype/hosts/nuke/plugins/create/create_backdrop.py index efed1a1493..ff415626be 100644 --- a/openpype/hosts/nuke/plugins/create/create_backdrop.py +++ b/openpype/hosts/nuke/plugins/create/create_backdrop.py @@ -2,10 +2,8 @@ from nukescripts import autoBackdrop from openpype.hosts.nuke.api import ( NukeCreator, - NukeCreatorError, maintained_selection, select_nodes - ) diff --git a/openpype/style/pyside6_resources.py b/openpype/style/pyside6_resources.py index c7de95d14f..125fcb64fa 100644 --- a/openpype/style/pyside6_resources.py +++ b/openpype/style/pyside6_resources.py @@ -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) diff --git a/tests/integration/hosts/aftereffects/lib.py b/tests/integration/hosts/aftereffects/lib.py index d5475bf37d..c3dff6cd77 100644 --- a/tests/integration/hosts/aftereffects/lib.py +++ b/tests/integration/hosts/aftereffects/lib.py @@ -50,4 +50,3 @@ class AELocalPublishTestClass(AEHostFixtures, PublishTest): class AEDeadlinePublishTestClass(AEHostFixtures, DeadlinePublishTest): """Testing class for Deadline publishes.""" - diff --git a/tests/integration/hosts/maya/lib.py b/tests/integration/hosts/maya/lib.py index d84ef4faea..e7480e25fa 100644 --- a/tests/integration/hosts/maya/lib.py +++ b/tests/integration/hosts/maya/lib.py @@ -55,4 +55,3 @@ class MayaLocalPublishTestClass(MayaHostFixtures, PublishTest): class MayaDeadlinePublishTestClass(MayaHostFixtures, DeadlinePublishTest): """Testing class for Deadline publishes.""" - diff --git a/tests/integration/hosts/nuke/lib.py b/tests/integration/hosts/nuke/lib.py index ec613a82b7..8e97cd6fe4 100644 --- a/tests/integration/hosts/nuke/lib.py +++ b/tests/integration/hosts/nuke/lib.py @@ -66,4 +66,3 @@ class NukeLocalPublishTestClass(NukeHostFixtures, PublishTest): class NukeDeadlinePublishTestClass(NukeHostFixtures, DeadlinePublishTest): """Testing class for Deadline publishes.""" - diff --git a/tools/fetch_thirdparty_libs.py b/tools/fetch_thirdparty_libs.py index be9c271bf6..7bcdde2ab2 100644 --- a/tools/fetch_thirdparty_libs.py +++ b/tools/fetch_thirdparty_libs.py @@ -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)