Remove unused fallback to simplejson

The built-in json module is available in recent Python 3 versions so
this fallback is not at all used.

Change-Id: I7b24fd1e107b6bed7322faecdd04ff9d3336d761
This commit is contained in:
Takashi Kajinami 2024-04-28 17:33:26 +09:00
parent 300b8c8262
commit fe8a8cbce6
1 changed files with 1 additions and 5 deletions

View File

@ -15,6 +15,7 @@
import copy
import io
import json
import logging
import socket
@ -26,11 +27,6 @@ from oslo_utils import netutils
import requests
import urllib.parse
try:
import json
except ImportError:
import simplejson as json
from oslo_utils import encodeutils
from glanceclient.common import utils