From fdbd9938fb30f773205c7d5b384e66186dce0c14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 31 Jan 2016 18:08:57 +0100 Subject: [PATCH] Apply PEP8 to plot_adapt_rgb --- doc/examples/color_exposure/plot_adapt_rgb.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/examples/color_exposure/plot_adapt_rgb.py b/doc/examples/color_exposure/plot_adapt_rgb.py index 24d8f078..64b2d00b 100644 --- a/doc/examples/color_exposure/plot_adapt_rgb.py +++ b/doc/examples/color_exposure/plot_adapt_rgb.py @@ -49,7 +49,8 @@ image = data.astronaut() fig = plt.figure(figsize=(14, 7)) ax_each = fig.add_subplot(121, adjustable='box-forced') -ax_hsv = fig.add_subplot(122, sharex=ax_each, sharey=ax_each, adjustable='box-forced') +ax_hsv = fig.add_subplot(122, sharex=ax_each, sharey=ax_each, + adjustable='box-forced') # We use 1 - sobel_each(image) # but this will not work if image is not normalized @@ -107,7 +108,8 @@ def sobel_gray(image): return filters.sobel(image) fig = plt.figure(figsize=(7, 7)) -ax = fig.add_subplot(111, sharex=ax_each, sharey=ax_each, adjustable='box-forced') +ax = fig.add_subplot(111, sharex=ax_each, sharey=ax_each, + adjustable='box-forced') # We use 1 - sobel_gray(image) # but this will not work if image is not normalized