mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-23 12:50:22 +08:00
Replace it by distinguishing between "Loadable" and "Computable". This is useful because it's now possible to write computable terms that don't require any inputs (e.g. an `Always` filter or an `Everything` classifier).
10 lines
117 B
Python
10 lines
117 B
Python
"""
|
|
classifier.py
|
|
"""
|
|
|
|
from zipline.pipeline.term import ComputableTerm
|
|
|
|
|
|
class Classifier(ComputableTerm):
|
|
pass
|