simplified 'get_ocio_config_script_path'

This commit is contained in:
Jakub Trllo 2024-05-06 16:57:27 +02:00
parent 1568d40c98
commit c0d5e77177

View file

@ -113,13 +113,12 @@ def get_ocio_config_script_path():
Returns:
str: path string
"""
return os.path.normpath(
os.path.join(
AYON_CORE_ROOT,
"scripts",
"ocio_wrapper.py"
)
return os.path.join(
os.path.normpath(AYON_CORE_ROOT),
"scripts",
"ocio_wrapper.py"
)