From 7ed5461f8f1a73665f34a8cede42f21a7eb1f4eb Mon Sep 17 00:00:00 2001 From: fawce Date: Wed, 7 Jan 2015 21:47:01 -0500 Subject: [PATCH] de-linting --- zipline/finance/performance/period.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zipline/finance/performance/period.py b/zipline/finance/performance/period.py index c65130fb..b14aeef5 100644 --- a/zipline/finance/performance/period.py +++ b/zipline/finance/performance/period.py @@ -346,7 +346,9 @@ class PerformancePeriod(object): @property def _net_liquidation_value(self): - return self.ending_cash + self._long_exposure() + self._short_exposure() + return self.ending_cash + \ + self._long_exposure() + \ + self._short_exposure() def _gross_leverage(self): net_liq = self._net_liquidation_value