From e9d4f1d9d0c1f6481cfaea3e13604ec2b87d6215 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Fri, 19 Oct 2012 14:14:53 -0400 Subject: [PATCH] Applies flake8 recommendation. Whitespace wrangling. --- zipline/gens/transform.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zipline/gens/transform.py b/zipline/gens/transform.py index b191ef61..b61528b1 100644 --- a/zipline/gens/transform.py +++ b/zipline/gens/transform.py @@ -458,6 +458,7 @@ class BatchTransform(EventWindow): self.compute_transform_value = f return self.handle_data + def batch_transform(func): """Decorator function to use instead of inheriting from BatchTransform. For an example on how to use this, see the doc string of BatchTransform.