From 4230049fde10c770e8e9a2ca81a573bcf1593169 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Tue, 6 Oct 2015 02:31:24 -0400 Subject: [PATCH] DOC: More docs tweaks. - Remove methods and attributes on Pipeline. They look bad on the Q docs.x - Reword columns docstring. --- zipline/pipeline/pipeline.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/zipline/pipeline/pipeline.py b/zipline/pipeline/pipeline.py index 9a0e91a5..72f731af 100644 --- a/zipline/pipeline/pipeline.py +++ b/zipline/pipeline/pipeline.py @@ -26,17 +26,6 @@ class Pipeline(object): Initial columns. screen : zipline.pipeline.term.Filter, optional Initial screen. - - Methods - ------- - add - remove - set_screen - - Attributes - ---------- - columns - screen """ __slots__ = ('_columns', '_screen', '__weakref__') @@ -54,7 +43,7 @@ class Pipeline(object): @property def columns(self): """ - The columns currently applied to this pipeline. + The columns registered with this pipeline. """ return self._columns