Merge branch 'master' into use-data-source-for-data-frame

This commit is contained in:
Eddie Hebert
2012-11-19 21:25:50 -05:00
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ requests==0.14.2
# Linting
flake8==1.5
flake8==1.6
+5 -2
View File
@@ -404,8 +404,11 @@ class BatchTransform(EventWindow):
self.trading_days_since_update += 1
self.trading_days_total += 1
if self.trading_days_total >= self.days and\
self.trading_days_since_update >= self.refresh_period:
if (
self.trading_days_total >= self.days and
self.trading_days_since_update >= self.refresh_period
):
# Create datapanel of running event window.
self.data = self.get_data()
# Setting updated to True will cause get_transform_value()