Update openpype/pipeline/colorspace.py

Co-authored-by: Roy Nieterau <roy_nieterau@hotmail.com>
This commit is contained in:
Jakub Ježek 2023-06-30 16:23:11 +02:00 committed by GitHub
parent 051882bb3e
commit 131f8ddd89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,7 @@ def compatibility_check():
"""Making sure PyOpenColorIO is importable"""
try:
import PyOpenColorIO # noqa: F401
except (ImportError, ModuleNotFoundError):
except ImportError:
return False
return True