STY: Use same names in subclass.

This commit is contained in:
Scott Sanderson
2015-08-25 14:09:46 -04:00
parent dd1f9221f9
commit 6c2d7ff395
+2 -2
View File
@@ -149,10 +149,10 @@ class NoOpFFCEngine(FFCEngine):
FFCEngine that doesn't do anything.
"""
def factor_matrix(self, terms, start, end):
def factor_matrix(self, terms, start_date, end_date):
return DataFrame(
index=MultiIndex.from_product(
[date_range(start=start, end=end, freq='D'), ()],
[date_range(start=start_date, end=end_date, freq='D'), ()],
),
columns=sorted(terms.keys())
)