From 7deec4a74c59031b9721a4b16984062facfec726 Mon Sep 17 00:00:00 2001 From: fawce Date: Wed, 21 Mar 2012 16:29:30 -0300 Subject: [PATCH] logic-o, forgot the self parameter. --- zipline/test/algorithms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipline/test/algorithms.py b/zipline/test/algorithms.py index 3b33eb38..fb337508 100644 --- a/zipline/test/algorithms.py +++ b/zipline/test/algorithms.py @@ -76,5 +76,5 @@ class NoopAlgorithm(object): def handle_frame(self, frame): pass - def get_sid_filter(): + def get_sid_filter(self): return None \ No newline at end of file