Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2014-02-12 21:26:48 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2014-02-12 21:26:48 (GMT)
commitfba4fda157aef3b22256ddfeec8ae2de7f7fe26e (patch)
tree4ddfb7df4608cd8297da329bef4af8fc371db639
parent18b4066acc0d3072895bb61c8f2bbb378d1dd361 (diff)
Pep8 fixes
-rw-r--r--develop-activity/symbols_tree.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/develop-activity/symbols_tree.py b/develop-activity/symbols_tree.py
index 022f45a..eb234d3 100644
--- a/develop-activity/symbols_tree.py
+++ b/develop-activity/symbols_tree.py
@@ -21,7 +21,8 @@ from gi.repository import GObject
class SymbolsTree(Gtk.TreeView):
- __gsignals__ = {'symbol-selected': (GObject.SignalFlags.RUN_FIRST, None, [int])}
+ __gsignals__ = {'symbol-selected': (GObject.SignalFlags.RUN_FIRST, None,
+ [int])}
def __init__(self):
GObject.GObject.__init__(self)
@@ -48,18 +49,18 @@ class SymbolsTree(Gtk.TreeView):
def _add_class(self, name, line):
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size('icons/class.png', 24,
- 24)
+ 24)
parent = self._model.append(None, (pixbuf, name, line))
return parent
def _add_method(self, name, line, parent=None):
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size('icons/function.png',
- 24, 24)
+ 24, 24)
self._model.append(parent, (pixbuf, name, line))
def _add_attribute(self, name, line, parent=None):
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size('icons/attribute.png',
- 24, 24)
+ 24, 24)
self._model.append(parent, (pixbuf, name, line))
def _symbol_selected_cb(self, widget):