diff options
| author | songwenping <songwenping@inspur.com> | 2020-10-06 14:26:27 +0800 |
|---|---|---|
| committer | root <songwenping@inspur.com> | 2020-10-07 02:15:25 +0000 |
| commit | c2df9215e19752714e83fcad82c8ae3708f85d7a (patch) | |
| tree | cfcf7e7041dcb4e4532a645d087140053bc5deca /openstackclient/tests/unit/utils.py | |
| parent | 098a3fe2dea70eb16f13b717d62f51a4c890891d (diff) | |
| download | python-openstackclient-c2df9215e19752714e83fcad82c8ae3708f85d7a.tar.gz | |
Remove usage of six
With python3.x, classes can use 'metaclass=' instead of
'six.add_metaclass', 'six.iteritems' and 'six.iterkeys' can
be replaced by 'items' and 'keys', 'six.moves.urllib.parse'
can be replaced by 'urllib.parse', 'six.StringIO' and
'six.moves.cStringIO' can be replaced by 'io.StringIO',
'six.text_type' and 'six.string_type' are just 'str'.
Change-Id: I84848c0bf8ab3c36dd821141191e2725e4e3b58b
Diffstat (limited to 'openstackclient/tests/unit/utils.py')
| -rw-r--r-- | openstackclient/tests/unit/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/tests/unit/utils.py b/openstackclient/tests/unit/utils.py index 4f1bc46a..4130f18e 100644 --- a/openstackclient/tests/unit/utils.py +++ b/openstackclient/tests/unit/utils.py @@ -14,11 +14,11 @@ # under the License. # +from io import StringIO import os from cliff import columns as cliff_columns import fixtures -from six.moves import StringIO import testtools from openstackclient.tests.unit import fakes |
