From 9a57d69b61027e4878f4bbdeed1f75b7c93546d7 Mon Sep 17 00:00:00 2001 From: Agustin Zubiaga Date: Tue, 18 Sep 2012 04:38:52 +0000 Subject: pep8 fixes --- (limited to 'activity.py') diff --git a/activity.py b/activity.py index 3ae55e6..56e78d5 100644 --- a/activity.py +++ b/activity.py @@ -605,7 +605,8 @@ class ChartActivity(activity.Activity): # Update the controls in the config subtoolbar self.chart_color_btn.set_color(Color(self.chart_color).get_gdk_color()) - self.line_color_btn.set_color(Color(self.chart_line_color).get_gdk_color()) + self.line_color_btn.set_color(Color(self.chart_line_color).\ + get_gdk_color()) # If the saved label is not '', set the text entry with the saved label if self.x_label != '': @@ -647,8 +648,9 @@ class ChartActivity(activity.Activity): class ChartData(Gtk.TreeView): __gsignals__ = { - 'label-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), - 'value-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str], ), } + 'label-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str]), + 'value-changed': (GObject.SignalFlags.RUN_FIRST, None, [str, str]), + } def __init__(self, activity): -- cgit v0.9.1