diff options
author | Daniel Silverstone <daniel.silverstone@codethink.co.uk> | 2018-10-24 10:51:07 +0100 |
---|---|---|
committer | Daniel Silverstone <daniel.silverstone@codethink.co.uk> | 2018-10-25 15:43:52 +0100 |
commit | 4e7408ee6d57d52cbed6b2bef06ccd57b42922f6 (patch) | |
tree | 90c7fa0389ab1ebd17da7a927ac4fd914a335ca2 | |
parent | 7c72d25bff179ba2b37c2fe9c0a9a5eef43345b6 (diff) | |
download | buildstream-4e7408ee6d57d52cbed6b2bef06ccd57b42922f6.tar.gz |
sandbox/_mounter.py: Remove useless inheritance on `object`
In Python 3, inheriting from `object` explicitly is pointless.
Signed-off-by: Daniel Silverstone <daniel.silverstone@codethink.co.uk>
-rw-r--r-- | buildstream/sandbox/_mounter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/sandbox/_mounter.py b/buildstream/sandbox/_mounter.py index 921d06bb6..e6054c20d 100644 --- a/buildstream/sandbox/_mounter.py +++ b/buildstream/sandbox/_mounter.py @@ -25,7 +25,7 @@ from .. import utils, _signals # A class to wrap the `mount` and `umount` system commands -class Mounter(object): +class Mounter(): @classmethod def _mount(cls, dest, src=None, mount_type=None, stdout=sys.stdout, stderr=sys.stderr, options=None, |