Enable PEP8 checks for F401, E202, E271, E272, E711, E712

* F401 module imported but unused
* E271 multiple spaces after keyword
* E272 multiple spaces before keyword
* E202 remove extraneous whitespace
* E711 comparison to None should be 'if cond is None:'
* E712 comparison to True/False should be 'if cond is True/False:' or 'if cond:'

Change-Id: I56a1dbee2ae17b8315a55215e2c676e0de8311f7
This commit is contained in:
Christian Berendt
2015-01-16 12:59:54 +01:00
parent 64c2850441
commit 713b745e0e
17 changed files with 12 additions and 36 deletions

View File

@@ -8,13 +8,9 @@ import os
import re
import socket
import logging
import tempfile
import traceback
import basedefs
from . import utils
from .setup_controller import Controller
from .exceptions import ParamValidationError