MAINT/PERF: Remove redundant method call.

`_get_minute_window_data` was just forwarding its input to a method with
the same signature.
This commit is contained in:
Scott Sanderson
2016-10-26 23:28:34 -04:00
parent 5547cca779
commit 25c78de356
-4
View File
@@ -922,10 +922,6 @@ class DataPortal(object):
-------
A numpy array with requested values.
"""
return self._get_minute_window_data(assets, field, minutes_for_window)
def _get_minute_window_data(
self, assets, field, minutes_for_window):
return self._minute_history_loader.history(assets,
minutes_for_window,
field,