diff options
author | Takashi Kajinami <tkajinam@redhat.com> | 2022-05-09 14:48:19 +0900 |
---|---|---|
committer | Takashi Kajinami <tkajinam@redhat.com> | 2022-05-09 17:01:25 +0000 |
commit | 23e647539cb9c6872d9f72de99c21e113fded77c (patch) | |
tree | cb1d066f225e328b664a6fa3dd73607fec181f9e /heatclient/v1/events.py | |
parent | a12456c17c5f43a35a54e605e89f74205be1e98e (diff) | |
download | python-heatclient-23e647539cb9c6872d9f72de99c21e113fded77c.tar.gz |
Remove six
This library no longer supports Python 2, thus usage of six can be
removed.
Change-Id: I8d0c1cfd6dff375b3b7756a5b36c95a2df3f04c6
Diffstat (limited to 'heatclient/v1/events.py')
-rw-r--r-- | heatclient/v1/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/heatclient/v1/events.py b/heatclient/v1/events.py index f86549d..9427691 100644 --- a/heatclient/v1/events.py +++ b/heatclient/v1/events.py @@ -15,7 +15,7 @@ import collections from oslo_utils import encodeutils -from six.moves.urllib import parse +from urllib import parse from heatclient.common import base from heatclient.common import utils |