From 569599f5950fcbf9c2c9f0fdf5f4b469babe573a Mon Sep 17 00:00:00 2001 From: Vincent Danno Date: Wed, 9 Jun 2021 21:29:05 +0200 Subject: Use python 3 super() style See https://www.python.org/dev/peps/pep-3135/ Signed-off-by: Vincent Danno Change-Id: I4f74db4a019b70d0289f8969d57fa9ad629c586f --- xtesting/core/robotframework.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xtesting/core/robotframework.py') diff --git a/xtesting/core/robotframework.py b/xtesting/core/robotframework.py index 64ee352c..3e3d9de8 100644 --- a/xtesting/core/robotframework.py +++ b/xtesting/core/robotframework.py @@ -55,7 +55,7 @@ class RobotFramework(testcase.TestCase): __logger = logging.getLogger(__name__) def __init__(self, **kwargs): - super(RobotFramework, self).__init__(**kwargs) + super().__init__(**kwargs) self.xml_file = os.path.join(self.res_dir, 'output.xml') def parse_results(self): -- cgit 1.2.3-korg