MAINT: Remove empty inputs from BoundColumn.

They belong on LoadableTerm instead.
This commit is contained in:
Scott Sanderson
2016-08-17 16:52:09 -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. The name of this column.
""" """
mask = AssetExists() mask = AssetExists()
inputs = ()
window_safe = True window_safe = True
def __new__(cls, dtype, missing_value, dataset, name): 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`. This is the base class for :class:`zipline.pipeline.data.BoundColumn`.
""" """
windowed = False windowed = False
inputs = ()
@lazyval @lazyval
def dependencies(self): def dependencies(self):