mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
removing extra space
This commit is contained in:
parent
49cfebb163
commit
aefbc7ef47
2 changed files with 5 additions and 5 deletions
|
|
@ -24,7 +24,7 @@ log = Logger.get_logger(__name__)
|
|||
|
||||
class CachedData:
|
||||
remapping = None
|
||||
has_compatible_ocio_package = None
|
||||
has_compatible_ocio_package = None
|
||||
config_version_data = None
|
||||
ocio_config_colorspaces = {}
|
||||
|
||||
|
|
@ -452,14 +452,14 @@ def _get_wrapped_with_subprocess(command_group, command, **kwargs):
|
|||
# TODO: this should be part of ocio_wrapper.py
|
||||
def compatibility_check():
|
||||
"""Making sure PyOpenColorIO is importable"""
|
||||
if CachedData.has_compatible_ocio_package is not None:
|
||||
if CachedData.has_compatible_ocio_package is not None:
|
||||
return CachedData.has_compatible_ocio_package
|
||||
|
||||
try:
|
||||
import PyOpenColorIO # noqa: F401
|
||||
CachedData.has_compatible_ocio_package = True
|
||||
CachedData.has_compatible_ocio_package = True
|
||||
except ImportError:
|
||||
CachedData.has_compatible_ocio_package = False
|
||||
CachedData.has_compatible_ocio_package = False
|
||||
|
||||
# compatible
|
||||
return CachedData.has_compatible_ocio_package
|
||||
|
|
|
|||
|
|
@ -227,7 +227,7 @@ class TestPipelineColorspace(TestPipeline):
|
|||
expected_hiero = "Gamma 2.2 Rec.709 - Texture"
|
||||
|
||||
# switch to python 2 compatibility mode
|
||||
colorspace.CachedData.has_compatible_ocio_package = False
|
||||
colorspace.CachedData.has_compatible_ocio_package = False
|
||||
|
||||
nuke_colorspace = colorspace.get_colorspace_name_from_filepath(
|
||||
nuke_filepath,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue