From 072ada812a875a0c78fedd6fe17877936ef35fe3 Mon Sep 17 00:00:00 2001 From: ChrisPappalardo Date: Thu, 2 Jun 2016 19:50:05 -0700 Subject: [PATCH] STY: fixed flake8 failing test --- zipline/pipeline/factors/technical.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zipline/pipeline/factors/technical.py b/zipline/pipeline/factors/technical.py index b6e10d24..0d03e9c7 100644 --- a/zipline/pipeline/factors/technical.py +++ b/zipline/pipeline/factors/technical.py @@ -653,7 +653,8 @@ class TrueRange(CustomFactor): Indicates the true degree of daily price change in an underlying. """ - inputs = (USEquityPricing.high, USEquityPricing.low, USEquityPricing.close, ) + inputs = (USEquityPricing.high, USEquityPricing.low, + USEquityPricing.close, ) window_length = 2 def compute(self, today, assets, out, highs, lows, closes):