MAINT: Rename ffc_loader -> pipeline_loader.

This commit is contained in:
Scott Sanderson
2015-10-01 18:03:54 -04:00
parent 2d683961bd
commit 1f6c7ff31f
3 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -230,7 +230,7 @@ class TradingAlgorithm(object):
self.asset_finder = self.trading_environment.asset_finder
# Initialize Pipeline API data.
self.init_engine(kwargs.pop('ffc_loader', None))
self.init_engine(kwargs.pop('pipeline_loader', None))
self._pipelines = []
# Create an always-expired cache so that we compute the first time data
# is requested.
@@ -323,7 +323,7 @@ class TradingAlgorithm(object):
def init_engine(self, loader):
"""
Construct and save a PipelineEngine from loader.
Construct and store a PipelineEngine from loader.
If loader is None, constructs a NoOpPipelineEngine.
"""