From 9e57198e16fecc6214c0f7410b63bcb282ba273a Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Thu, 14 May 2015 15:46:17 -0400 Subject: [PATCH] MAINT: Remove unused property on performance period. The last sale prices property is no longer referenced elsewhere. --- zipline/finance/performance/period.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zipline/finance/performance/period.py b/zipline/finance/performance/period.py index ee405c90..dd50128e 100644 --- a/zipline/finance/performance/period.py +++ b/zipline/finance/performance/period.py @@ -232,10 +232,6 @@ class PerformancePeriod(object): def position_amounts(self): return self.position_tracker.position_amounts - @property - def position_last_sale_prices(self): - return self.position_tracker.position_last_sale_prices - @position_proxy def calculate_positions_value(self): raise ProxyError()