mirror of
https://github.com/wassname/catalyst.git
synced 2026-09-12 12:12:04 +08:00
MAINT: Remove empty inputs from BoundColumn.
They belong on LoadableTerm instead.
This commit is contained in:
@@ -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):
|
||||||
|
|||||||
@@ -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):
|
||||||
|
|||||||
Reference in New Issue
Block a user