Skip to content
Snippets Groups Projects
Commit f09179b8 authored by Daniel Silverstone's avatar Daniel Silverstone
Browse files

sandbox/_mounter.py: Remove useless inheritance on `object`


In Python 3, inheriting from `object` explicitly is pointless.

Signed-off-by: default avatarDaniel Silverstone <daniel.silverstone@codethink.co.uk>
parent aa650bb2
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment