summaryrefslogtreecommitdiff
path: root/designateclient/v2/cli/common.py
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-04-28 07:46:46 +0000
committerGerrit Code Review <review@openstack.org>2021-04-28 07:46:46 +0000
commit9bc517aa274d41572da87c0ad60ac4ae9f086f64 (patch)
tree9a0eea3a49aac54085951b983074faa031105942 /designateclient/v2/cli/common.py
parentf8353c5f03cdad448eb0ddade246fdf6ff92b494 (diff)
parent820f1e9af9317b91f3ee11a9ca22ea340119a125 (diff)
downloadpython-designateclient-4.3.0.tar.gz
Merge "Remove six and update lower-constraints appdirs"4.3.0
Diffstat (limited to 'designateclient/v2/cli/common.py')
-rw-r--r--designateclient/v2/cli/common.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/designateclient/v2/cli/common.py b/designateclient/v2/cli/common.py
index fb18df4..ca66754 100644
--- a/designateclient/v2/cli/common.py
+++ b/designateclient/v2/cli/common.py
@@ -13,7 +13,6 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
-import six
def add_all_projects_option(parser):
@@ -71,5 +70,5 @@ def set_all_common_headers(client, parsed_args):
set_edit_managed(client, parsed_args.edit_managed)
if parsed_args.sudo_project_id is not None and \
- isinstance(parsed_args.sudo_project_id, six.string_types):
+ isinstance(parsed_args.sudo_project_id, str):
set_sudo_project_id(client, parsed_args.sudo_project_id)