Fix some pylint

This commit is contained in:
Cole Robinson
2013-02-16 13:19:05 -05:00
parent 0ffa69e760
commit abbdd1743a
3 changed files with 2 additions and 2 deletions

View File

@@ -12,4 +12,4 @@ srpm: clean
$(MAKE) dist && rpmbuild -ts $(distdir).tar.gz
check-pylint:
tests/pylint-virt-manager.sh
@tests/pylint-virt-manager.sh

View File

@@ -18,7 +18,6 @@
# MA 02110-1301 USA.
#
from gi.repository import GObject
from gi.repository import Gtk
from gi.repository import Gdk

View File

@@ -165,6 +165,7 @@ skip_pep8 "E221" # Multiple spaces before operator (warns
skip_pep8 "E241" # Space after , column alignment nono
skip_pep8 "E251" # No space around keyword
skip_pep8 "E261" # 2 spaces before inline comment?
skip_pep8 "E271" # Lining up 'foo = bar" statements
skip_pep8 "E272" # Lining up 'from X import Y" statements
skip_pep8 "E301" # 1 blank line between methods