From eae863e23dca75059472b13948391e2707b77341 Mon Sep 17 00:00:00 2001 From: Rafael Ortiz Date: Mon, 20 Jun 2011 20:08:07 +0000 Subject: pep8 fixes --- diff --git a/utils.py b/utils.py index fdf7e95..cb5b53f 100644 --- a/utils.py +++ b/utils.py @@ -22,13 +22,14 @@ from sugar.graphics.combobox import ComboBox as _ComboBox from theme import * + class ComboBox(_ComboBox): def __init__(self): _ComboBox.__init__(self) self.set_name('we-really-need-it-to-use-custom-combobox-colors') - def append_item(self, action_id, text = None, icon_name = None, size = None, - pixbuf = None, position = None): + def append_item(self, action_id, text=None, icon_name=None, size=None, + pixbuf=None, position=None): if not self._icon_renderer and (icon_name or pixbuf): self._icon_renderer = gtk.CellRendererPixbuf() -- cgit v0.9.1