From 351e7697331548cf6a19ef1ed8a512a95424517c Mon Sep 17 00:00:00 2001 From: Vighnesh Birodkar Date: Thu, 3 Jul 2014 09:54:34 +0530 Subject: [PATCH] Docstring change --- doc/examples/plot_rag.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/examples/plot_rag.py b/doc/examples/plot_rag.py index c3192ca2..b26a266d 100644 --- a/doc/examples/plot_rag.py +++ b/doc/examples/plot_rag.py @@ -49,9 +49,7 @@ def max_edge(g, src, dst, n): def display(g, title): - """Displays a graph with the given title. - - """ + """Displays a graph with the given title.""" pos = nx.circular_layout(g) plt.figure() plt.title(title)