summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <daniel.silverstone@codethink.co.uk>2018-10-24 10:21:29 +0100
committerDaniel Silverstone <daniel.silverstone@codethink.co.uk>2018-10-25 15:43:52 +0100
commit31a7bce57793e0d72412a4a9e9e7f8d34a0c7d05 (patch)
tree33e51b1d9c26108fbe72562e4a7df1ac75b20ccb
parent522867c8a2c3bccc5230cdb27adfdf2dce6fff49 (diff)
downloadbuildstream-31a7bce57793e0d72412a4a9e9e7f8d34a0c7d05.tar.gz
_fuse/mount.py: Deal with abstract method lint issue
Unfortunately pylint can't tell this is an abstract method which will only ever end up invoked from a class which concretises it. As such we need to silence this warning. Signed-off-by: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-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 ca5ed023c..e31684100 100644
--- a/buildstream/_fuse/mount.py
+++ b/buildstream/_fuse/mount.py
@@ -182,7 +182,7 @@ class Mount():
# Ask the subclass to give us an Operations object
#
- self.__operations = self.create_operations()
+ self.__operations = self.create_operations() # pylint: disable=assignment-from-no-return
# Run fuse in foreground in this child process, internally libfuse
# will handle SIGTERM and gracefully exit its own little main loop.