From 78caebf6d25b6bbba070b0d3b74abc26800dfa36 Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Tue, 29 Jul 2014 03:31:12 +0530 Subject: [PATCH] string wrap --- doc/examples/plot_rag_draw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/plot_rag_draw.py b/doc/examples/plot_rag_draw.py index 1c47743e..51a33dbd 100644 --- a/doc/examples/plot_rag_draw.py +++ b/doc/examples/plot_rag_draw.py @@ -21,8 +21,8 @@ plt.imshow(out) out = graph.rag_draw(labels, g, img, high_color=(1, 0, 0), thresh=30) plt.figure() -plt.title("RAG with edge weights less than 30,\ - color mapped between green and red.") +plt.title("RAG with edge weights less than 30, color " + "mapped between green and red.") plt.imshow(out) plt.show()