From 34f1dd783a34557e838e181cd93a9e093940617a Mon Sep 17 00:00:00 2001 From: fawce Date: Tue, 30 Apr 2013 16:48:13 -0400 Subject: [PATCH] STY: Tweak comments in performance to match rest of file. --- zipline/finance/performance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py index b1a12042..f3178edd 100644 --- a/zipline/finance/performance.py +++ b/zipline/finance/performance.py @@ -481,10 +481,10 @@ class PerformancePeriod(object): self.ending_value = 0.0 self.period_cash_flow = 0.0 self.pnl = 0.0 - #sid => position object + # sid => position object self.positions = positiondict() self.starting_value = 0.0 - #cash balance at start of period + # cash balance at start of period self.starting_cash = starting_cash self.ending_cash = starting_cash self.keep_transactions = keep_transactions