Merge "Remove the unused coding style modules"

This commit is contained in:
Zuul 2020-05-17 03:52:37 +00:00 committed by Gerrit Code Review
commit e96e4e81bc
3 changed files with 4 additions and 5 deletions

View File

@ -54,8 +54,6 @@ linecache2==1.0.0
logutils==0.3.5 logutils==0.3.5
Mako==1.0.7 Mako==1.0.7
MarkupSafe==1.0 MarkupSafe==1.0
mccabe==0.2.1
mock==2.0.0
monotonic==1.4 monotonic==1.4
mox3==0.25.0 mox3==0.25.0
msgpack==0.5.6 msgpack==0.5.6

View File

@ -2,12 +2,13 @@
# of appearance. Changing the order has an impact on the overall integration # of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8
hacking>=3.0.1,<3.1.0 # Apache-2.0
bandit>=1.1.0 # Apache-2.0 bandit>=1.1.0 # Apache-2.0
doc8>=0.6.0 # Apache-2.0 doc8>=0.6.0 # Apache-2.0
coverage!=4.4,>=4.0 # Apache-2.0 coverage!=4.4,>=4.0 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD fixtures>=3.0.0 # Apache-2.0/BSD
hacking>=3.0.1,<3.1.0 # Apache-2.0
oslotest>=3.2.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0
osprofiler>=1.4.0 # Apache-2.0 osprofiler>=1.4.0 # Apache-2.0
os-testr>=1.0.0 # Apache-2.0 os-testr>=1.0.0 # Apache-2.0

View File

@ -1062,8 +1062,8 @@ class DockerDriver(driver.BaseDriver, driver.ContainerDriver,
labels = {} labels = {}
slabels = info['Labels'] slabels = info['Labels']
if slabels: if slabels:
for l in slabels: for slabel in slabels:
kv = l.split("=") kv = slabel.split("=")
label = {kv[0]: kv[1]} label = {kv[0]: kv[1]}
labels.update(label) labels.update(label)
runtimes = [] runtimes = []