Do not subclass object

This commit is contained in:
Dennis Camera 2020-06-20 21:16:23 +02:00
commit ce07021580
18 changed files with 19 additions and 22 deletions

View file

@ -49,7 +49,7 @@ class DecodeError(cdist.Error):
return "Cannot decode output of " + " ".join(self.command)
class Remote(object):
class Remote:
"""Execute commands remotely.
All interaction with the remote side should be done through this class.