Merge "Fix super() usage for proper initialization of config file"

This commit is contained in:
Zuul
2024-05-15 14:43:31 +00:00
committed by Gerrit Code Review

View File

@@ -36,7 +36,7 @@ class TempestConf(configparser.ConfigParser):
self.priority_sectionkeys = set()
self.write_credentials = write_credentials
super().__init__(self, **kwargs)
super().__init__(**kwargs)
def get_bool_value(self, value):
"""Returns boolean value of the string value given.