From 16aa63ac6e94c33994c1c9789b849a12ddd46cc3 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Mon, 15 Oct 2012 23:32:55 -0400 Subject: [PATCH] Changes import to use tuple-like syntax. --- zipline/gens/sort.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/zipline/gens/sort.py b/zipline/gens/sort.py index 76131b3b..170ae3ed 100644 --- a/zipline/gens/sort.py +++ b/zipline/gens/sort.py @@ -20,9 +20,10 @@ import logbook from collections import deque from zipline import ndict -from zipline.gens.utils import \ - assert_datasource_unframe_protocol, \ +from zipline.gens.utils import ( + assert_datasource_unframe_protocol, assert_sort_protocol +) log = logbook.Logger('Sorting')