mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
'get_display_view_colorspace_subprocess' is private
This commit is contained in:
parent
5599d773c7
commit
bf8b2fb3fa
1 changed files with 4 additions and 3 deletions
|
|
@ -1364,15 +1364,16 @@ def get_display_view_colorspace_name(config_path, display, view):
|
|||
if not compatibility_check():
|
||||
# python environment is not compatible with PyOpenColorIO
|
||||
# needs to be run in subprocess
|
||||
return get_display_view_colorspace_subprocess(config_path,
|
||||
display, view)
|
||||
return _get_display_view_colorspace_subprocess(
|
||||
config_path, display, view
|
||||
)
|
||||
|
||||
from ayon_core.scripts.ocio_wrapper import _get_display_view_colorspace_name # noqa
|
||||
|
||||
return _get_display_view_colorspace_name(config_path, display, view)
|
||||
|
||||
|
||||
def get_display_view_colorspace_subprocess(config_path, display, view):
|
||||
def _get_display_view_colorspace_subprocess(config_path, display, view):
|
||||
"""Returns the colorspace attribute of the (display, view) pair
|
||||
via subprocess.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue