de-linting

This commit is contained in:
fawce
2015-01-07 21:47:01 -05:00
parent 7668858c17
commit 7ed5461f8f
+3 -1
View File
@@ -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