summaryrefslogtreecommitdiff
path: root/cloudinit/cloud.py
diff options
context:
space:
mode:
authorAlberto Contreras <alberto.contreras@canonical.com>2022-09-14 23:24:15 +0200
committerGitHub <noreply@github.com>2022-09-14 16:24:15 -0500
commit8776a661a9189cbc0c4437562bcd3b6c27f81854 (patch)
treeba450c1de0984b44b45dfd2f5df4eff50c529902 /cloudinit/cloud.py
parent54baa4fe6ab28960fea667fd9a1a6ba9bebca88a (diff)
downloadcloud-init-git-8776a661a9189cbc0c4437562bcd3b6c27f81854.tar.gz
Refactor: Drop inheritance from object (#1728)
As we do not support python2 anymore, we can remove those 8 chars.
Diffstat (limited to 'cloudinit/cloud.py')
-rw-r--r--cloudinit/cloud.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/cloud.py b/cloudinit/cloud.py
index cbc5d0db..3600a784 100644
--- a/cloudinit/cloud.py
+++ b/cloudinit/cloud.py
@@ -28,7 +28,7 @@ LOG = logging.getLogger(__name__)
# while the stages/other objects can be worked on independently...
-class Cloud(object):
+class Cloud:
def __init__(
self,
datasource: DataSource,