MAINT: Remove empty inputs from BoundColumn.

They belong on LoadableTerm instead.
This commit is contained in:
Scott Sanderson
2016-08-12 14:05:55 -04:00
parent 1d93e1c21f
commit d99d993aea
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -112,7 +112,6 @@ class BoundColumn(LoadableTerm):
The name of this column.
"""
mask = AssetExists()
inputs = ()
window_safe = True
def __new__(cls, dtype, missing_value, dataset, name):
+1
View File
@@ -345,6 +345,7 @@ class LoadableTerm(Term):
This is the base class for :class:`zipline.pipeline.data.BoundColumn`.
"""
windowed = False
inputs = ()
@lazyval
def dependencies(self):