Merge "Fix security vulnerabilities using Bandit"

This commit is contained in:
Zuul 2022-10-10 19:53:34 +00:00 committed by Gerrit Code Review
commit 22acdaed8d
3 changed files with 3 additions and 2 deletions

View File

@ -21,3 +21,4 @@ stevedore>=1.20.0 # Apache-2.0
PrettyTable>=0.7.1 # BSD
urllib3>=1.21.1 # MIT
debtcollector>=1.2.0 # Apache-2.0
defusedxml>=0.7.1 # PSFL

View File

@ -14,8 +14,8 @@
# under the License.
from urllib import parse as urllib
from xml.etree import ElementTree as etree
from defusedxml import ElementTree as etree
from oslo_serialization import jsonutils as json
from tempest.lib.common import rest_client

View File

@ -14,9 +14,9 @@
# under the License.
from urllib import parse as urllib
from xml.etree import ElementTree as etree
import debtcollector.moves
from defusedxml import ElementTree as etree
from oslo_serialization import jsonutils as json
from tempest.lib.common import rest_client