Enable pylint unnecessary-pass
Change-Id: I5ba003286a9abdcd92c08d9a164282a03eb1144a
This commit is contained in:
parent
d7d4f1f96d
commit
b0124c55cb
@ -44,7 +44,6 @@ disable=
|
|||||||
signature-differs,
|
signature-differs,
|
||||||
star-args,
|
star-args,
|
||||||
super-init-not-called,
|
super-init-not-called,
|
||||||
unnecessary-pass,
|
|
||||||
unpacking-non-sequence,
|
unpacking-non-sequence,
|
||||||
unused-argument,
|
unused-argument,
|
||||||
unused-import,
|
unused-import,
|
||||||
|
@ -28,13 +28,11 @@ class Plumlib(object):
|
|||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
LOG.info(_LI('Python PLUMgrid Fake Library Started '))
|
LOG.info(_LI('Python PLUMgrid Fake Library Started '))
|
||||||
pass
|
|
||||||
|
|
||||||
def director_conn(self, director_plumgrid, director_port, timeout,
|
def director_conn(self, director_plumgrid, director_port, timeout,
|
||||||
director_admin, director_password):
|
director_admin, director_password):
|
||||||
LOG.info(_LI('Fake Director: %s'),
|
LOG.info(_LI('Fake Director: %s'),
|
||||||
director_plumgrid + ':' + director_port)
|
director_plumgrid + ':' + director_port)
|
||||||
pass
|
|
||||||
|
|
||||||
def create_network(self, tenant_id, net_db, network):
|
def create_network(self, tenant_id, net_db, network):
|
||||||
net_db["network"] = {}
|
net_db["network"] = {}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user