mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-03 11:43:23 +08:00
STY: Use same names in subclass.
This commit is contained in:
@@ -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())
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user