Ignore flake8 E402 where intended.

Sun, 04 Sep 2016 15:25:32 -0400

author
Elliott Sales de Andrade <qulogic@pidgin.im>
date
Sun, 04 Sep 2016 15:25:32 -0400
changeset 37987
81d3f45ae36b
parent 37986
77721c9f7a85
child 37988
8bbbd0b12e84

Ignore flake8 E402 where intended.

GTK's import mechanism requires this mixed import/code.

finch/plugins/pietray.py file | annotate | diff | comparison | revisions
--- a/finch/plugins/pietray.py	Fri Sep 02 16:00:01 2016 -0400
+++ b/finch/plugins/pietray.py	Sun Sep 04 15:25:32 2016 -0400
@@ -22,7 +22,7 @@
 import os  # to get the pkg-config output
 
 import pygtk
-pygtk.require("2.0")
+pygtk.require("2.0")  # noqa
 import gtk
 import dbus
 import dbus.glib

mercurial