pep8'd tests

This commit is contained in:
William Orr
2013-05-17 22:52:03 -04:00
committed by Daniel Narvaez
parent 30acc63d51
commit b9e17f640e
5 changed files with 45 additions and 27 deletions
+4 -1
View File
@@ -15,7 +15,10 @@ test = common.Test()
test.show()
model = Gtk.ListStore(str, int, int)
for item in [('one', 72, -1), ('two', 50, -1), ('three', 35, -1), ('four', 0, 5)]:
for item in [('one', 72, -1),
('two', 50, -1),
('three', 35, -1),
('four', 0, 5)]:
model.append(item)
treeview = Gtk.TreeView()