X-Git-Url: http://users.mur.at/ms/git/gitweb/?a=blobdiff_plain;f=aces_1.0.0%2Fpython%2Faces_ocio%2Futilities.py;h=6f30f3a58f9e3afa0b27565f6e3db1f42ffff88e;hb=3d531dce5348148c92789eebf0d198c42c2a0820;hp=7ba5e5a2542eea32ff677219c4ba45e3d594a425;hpb=07d70535fd63c090b57c754758a0b2ae3ff121ac;p=OpenColorIO-Configs.git diff --git a/aces_1.0.0/python/aces_ocio/utilities.py b/aces_1.0.0/python/aces_ocio/utilities.py index 7ba5e5a..6f30f3a 100644 --- a/aces_1.0.0/python/aces_ocio/utilities.py +++ b/aces_1.0.0/python/aces_ocio/utilities.py @@ -289,6 +289,5 @@ def unpack_default(iterable, length=3, default=None): iterable """ - return itertools.islice(itertools.chain(iter(iterable), - itertools.repeat(default)), - length) + return itertools.islice( + itertools.chain(iter(iterable), itertools.repeat(default)), length)