RBD: Remove last usage of "six" from RBD driver

Just use urllib.parse directly.

Change-Id: Idbfdd1061698cbcd3c42ef215615a8339a7ed6f8
This commit is contained in:
Eric Harney 2022-03-15 11:18:45 -04:00
parent 8537730c8c
commit ccb18625b5
1 changed files with 1 additions and 1 deletions

View File

@ -21,6 +21,7 @@ import os
import tempfile
import typing
from typing import Any, Dict, List, Optional, Tuple, Union # noqa: H301
import urllib.parse
from castellan import key_manager
from eventlet import tpool
@ -38,7 +39,6 @@ try:
except ImportError:
rados = None
rbd = None
from six.moves import urllib
from cinder import context
from cinder import exception