diff options
author | Vincent Danno <vincent.danno@orange.com> | 2021-05-26 13:08:55 +0200 |
---|---|---|
committer | Vincent Danno <vincent.danno@orange.com> | 2021-06-01 20:40:32 +0200 |
commit | a656fd764b0a608caaf198bfa9685a09a7eaca16 (patch) | |
tree | 501fa47e06658b8a43e2ccca4837c530a49dfc72 /xtesting/samples/first.py | |
parent | 6192b2cf9ffd46bdb8189ce3236cf4d9b722b69c (diff) |
Drop six
python 2 was dropped [1] so we don't need six anymore
[1]: https://gerrit.opnfv.org/gerrit/c/functest-xtesting/+/68262
Signed-off-by: Vincent Danno <vincent.danno@orange.com>
Change-Id: I840211990b76f77a46e9e737fc4a4c857b57c0b2
Diffstat (limited to 'xtesting/samples/first.py')
-rw-r--r-- | xtesting/samples/first.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xtesting/samples/first.py b/xtesting/samples/first.py index e8a17b23..5e240ed8 100644 --- a/xtesting/samples/first.py +++ b/xtesting/samples/first.py @@ -11,8 +11,6 @@ import time -import six - from xtesting.core import testcase @@ -20,6 +18,6 @@ class Test(testcase.TestCase): def run(self, **kwargs): self.start_time = time.time() - six.print_("Hello World") + print("Hello World") self.result = 100 self.stop_time = time.time() |