DOC: More docs tweaks.

- Remove methods and attributes on Pipeline.  They look bad on the Q docs.x
- Reword columns docstring.
This commit is contained in:
Scott Sanderson
2015-10-06 02:31:24 -04:00
parent e2d29e9260
commit 4230049fde
+1 -12
View File
@@ -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