From 233bf3080d974f8af8a9edaf0d48e4f2b5cc0740 Mon Sep 17 00:00:00 2001 From: fawce Date: Mon, 9 Feb 2015 13:32:01 -0500 Subject: [PATCH] security list type is a class level property now --- zipline/utils/security_list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zipline/utils/security_list.py b/zipline/utils/security_list.py index 8ad98585..0cb24a4b 100644 --- a/zipline/utils/security_list.py +++ b/zipline/utils/security_list.py @@ -84,11 +84,11 @@ class SecurityList(object): class SecurityListSet(object): + # provide a cut point to substitute other security + # list implementations. + security_list_type = SecurityList def __init__(self, current_date_func, lookup_func=None): - # provide a cut point to substitute other security - # list implementations. - self.security_list_type = SecurityList if lookup_func is None: self.lookup_func = loopback else: