From 95a9b7b3c2858b78d5a27360f45590898e23cd4f Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Wed, 20 Mar 2013 11:27:57 -0400 Subject: [PATCH] MAINT: Updates docstring for performance tracker class. --- zipline/finance/performance.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/zipline/finance/performance.py b/zipline/finance/performance.py index 83790e39..acf4a5cf 100644 --- a/zipline/finance/performance.py +++ b/zipline/finance/performance.py @@ -148,14 +148,7 @@ log = logbook.Logger('Performance') class PerformanceTracker(object): """ - Tracks the performance of the zipline as it is running in - the simulator, relays this out to the Deluge broker and then - to the client. Visually: - - +--------------------+ Result Stream +--------+ - | PerformanceTracker | ----------------> | Deluge | - +--------------------+ +--------+ - + Tracks the performance of the algorithm. """ def __init__(self, sim_params):