summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Ennis <james.ennis@codethink.com>2018-02-20 17:19:39 +0000
committerJames Ennis <james.ennis@codethink.com>2018-03-14 17:31:06 +0000
commit16ff3374b78b77553f8b01454c1deed8627817cd (patch)
tree3e049753f9fead24ede86e099d898907632fa21f
parentccec158ab92d7fefdac96599a0c059b8bf8ef741 (diff)
downloadbuildstream-16ff3374b78b77553f8b01454c1deed8627817cd.tar.gz
pylint - dealt with whitespace issues and disabled pep8 warnings
-rw-r--r--.pylintrc2
-rw-r--r--buildstream/_artifactcache/pushreceive.py2
-rw-r--r--buildstream/_frontend/widget.py2
3 files changed, 2 insertions, 4 deletions
diff --git a/.pylintrc b/.pylintrc
index 69888d251..3a9348709 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -116,8 +116,6 @@ disable=#####################################
cyclic-import,
- bad-whitespace
-
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
diff --git a/buildstream/_artifactcache/pushreceive.py b/buildstream/_artifactcache/pushreceive.py
index 0426f6871..7c3ac8259 100644
--- a/buildstream/_artifactcache/pushreceive.py
+++ b/buildstream/_artifactcache/pushreceive.py
@@ -32,7 +32,7 @@ from urllib.parse import urlparse
import click
import gi
-from .. import _signals
+from .. import _signals # nopep8
gi.require_version('OSTree', '1.0')
# pylint: disable=wrong-import-position,wrong-import-order
diff --git a/buildstream/_frontend/widget.py b/buildstream/_frontend/widget.py
index 90e207ed3..b5f581556 100644
--- a/buildstream/_frontend/widget.py
+++ b/buildstream/_frontend/widget.py
@@ -312,7 +312,7 @@ class LogLine(Widget):
log_lines=10,
message_lines=10,
debug=False,
- message_format: str=None):
+ message_format: str = None):
super(LogLine, self).__init__(content_profile, format_profile)
self.columns = []