summaryrefslogtreecommitdiff
path: root/buildstream/_fuse/mount.py
diff options
context:
space:
mode:
authorJames Ennis <james.ennis@codethink.com>2018-02-14 17:02:00 +0000
committerJames Ennis <james.ennis@codethink.com>2018-03-14 14:10:26 +0000
commit81833add3730eb3f8b489e9f5cc34df7617373fc (patch)
tree8072db8db7bff7befedf6fa09de506d7e0ba3fd3 /buildstream/_fuse/mount.py
parent0394d67d26035234553c506539b1bd790cddec1d (diff)
downloadbuildstream-81833add3730eb3f8b489e9f5cc34df7617373fc.tar.gz
pylint - dealt with superfluous-parens warning
Diffstat (limited to 'buildstream/_fuse/mount.py')
-rw-r--r--buildstream/_fuse/mount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_fuse/mount.py b/buildstream/_fuse/mount.py
index ed56c9b3c..e7662d2b5 100644
--- a/buildstream/_fuse/mount.py
+++ b/buildstream/_fuse/mount.py
@@ -96,7 +96,7 @@ class Mount():
#
def mount(self, mountpoint):
- assert(self.__process is None)
+ assert self.__process is None
self.__mountpoint = mountpoint
self.__process = Process(target=self.__run_fuse)