From 4522d8db6373342fe8eddc5eb97e13322a9e80a3 Mon Sep 17 00:00:00 2001 From: Thomas Mansencal Date: Thu, 15 Jan 2015 17:54:52 +0100 Subject: [PATCH] Reorder imports. --- aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py | 3 +-- aces_1.0.0/python/aces_ocio/create_aces_config.py | 1 + aces_1.0.0/python/aces_ocio/generateLUT.py | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py b/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py index ad959d0..0c15318 100644 --- a/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py +++ b/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py @@ -1,14 +1,13 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -import math import array +import math import aces_ocio.generateLUT as genlut from aces_ocio.util import ColorSpace, mat44FromMat33 - # # LogC to ACES # diff --git a/aces_1.0.0/python/aces_ocio/create_aces_config.py b/aces_1.0.0/python/aces_ocio/create_aces_config.py index 72ac0d3..230fde4 100755 --- a/aces_1.0.0/python/aces_ocio/create_aces_config.py +++ b/aces_1.0.0/python/aces_ocio/create_aces_config.py @@ -39,6 +39,7 @@ brew uninstall -vd opencolorio brew install -vd opencolorio --with-python ''' + import math import numpy import os diff --git a/aces_1.0.0/python/aces_ocio/generateLUT.py b/aces_1.0.0/python/aces_ocio/generateLUT.py index 0fd8c50..58777e5 100644 --- a/aces_1.0.0/python/aces_ocio/generateLUT.py +++ b/aces_1.0.0/python/aces_ocio/generateLUT.py @@ -25,11 +25,12 @@ brew uninstall -vd opencolorio brew install -vd opencolorio --with-python ''' -import sys -import os import array +import os +import sys import OpenImageIO as oiio + from aces_ocio.process import Process -- 1.7.10.4