summaryrefslogtreecommitdiff
path: root/cloudinit/stages.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/stages.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/stages.py')
-rw-r--r--cloudinit/stages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/stages.py b/cloudinit/stages.py
index cfce0dad..635a31e8 100644
--- a/cloudinit/stages.py
+++ b/cloudinit/stages.py
@@ -94,7 +94,7 @@ def update_event_enabled(
return False
-class Init(object):
+class Init:
def __init__(self, ds_deps: Optional[List[str]] = None, reporter=None):
if ds_deps is not None:
self.ds_deps = ds_deps