aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5006325..306524c 100644
--- a/README.md
+++ b/README.md
@@ -109,7 +109,7 @@ class Customizer(CustomizerBase):
"""
def __init__(self):
"""class that contains the customization"""
- super(Customizer, self).__init__()
+ super().__init__()
def get_service_url(self, audit, service_name, service):
"""
@@ -117,7 +117,7 @@ class Customizer(CustomizerBase):
this is just a sample code - replace it with the real customization
"""
- service_url = super(Customizer, self).get_service_url(audit, service_name, service)
+ service_url = super().get_service_url(audit, service_name, service)
audit.info("TODO: customization for service_url on {0}".format(service_name))
return service_url