MAINT: remove extra checks around empty odo_kwargs

This commit is contained in:
llllllllll
2015-12-10 13:01:16 -05:00
parent f719fef55e
commit 366e796975
+2 -2
View File
@@ -98,7 +98,7 @@ class BlazeEarningsCalendarLoader(PipelineLoader):
timestamp=filtered[TS_FIELD_NAME].max(),
).timestamp.min(),
pd.Timestamp,
**self._odo_kwargs or {}
**self._odo_kwargs
)
if lower is pd.NaT:
# If there is no lower date, just query for data in the date
@@ -111,7 +111,7 @@ class BlazeEarningsCalendarLoader(PipelineLoader):
(expr[TS_FIELD_NAME] <= dates[-1])
],
pd.DataFrame,
**self._odo_kwargs or {}
**self._odo_kwargs
)
sids = raw.loc[:, SID_FIELD_NAME]