From 99987999dbc22736fc78ec4106b2691626f35ee5 Mon Sep 17 00:00:00 2001 From: einarr Date: Mon, 2 Jul 2007 09:54:56 +0000 Subject: [PATCH] Broke up a too long line. --- fluents/plots.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fluents/plots.py b/fluents/plots.py index daa968b..0d5f931 100644 --- a/fluents/plots.py +++ b/fluents/plots.py @@ -285,7 +285,10 @@ class ScatterMarkerPlot(Plot): # init draw self._selection_line = None - self.line = self.axes.plot(self.xaxis_data, self.yaxis_data, 'o', markeredgewidth=0, markersize=s) + self.line = self.axes.plot(self.xaxis_data, + self.yaxis_data, 'o', + markeredgewidth=0, + markersize=s) self.axes.axhline(0, color='k', lw=1., zorder=1) self.axes.axvline(0, color='k', lw=1., zorder=1)