From 963324723c9357f6ffdbd811dc4ce71f0209c43e Mon Sep 17 00:00:00 2001 From: Thomas Wiecki Date: Thu, 1 Aug 2013 17:14:56 -0400 Subject: [PATCH] STY: Flake8 line break. --- zipline/examples/dual_moving_average.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zipline/examples/dual_moving_average.py b/zipline/examples/dual_moving_average.py index fd76658d..503fc49b 100755 --- a/zipline/examples/dual_moving_average.py +++ b/zipline/examples/dual_moving_average.py @@ -84,7 +84,8 @@ if __name__ == '__main__': fig = plt.figure() ax1 = fig.add_subplot(211, ylabel='cumulative returns') - results[['algorithm_returns', 'benchmark_returns']].plot(ax=ax1, sharex=True) + results[['algorithm_returns', 'benchmark_returns']].plot(ax=ax1, + sharex=True) ax2 = fig.add_subplot(212) data['AAPL'].plot(ax=ax2, color='r')