Enable H702 PEP8 check
Fixes files with the PEP8 error: H702 Argument to _, _LI, _LW, _LC, or _LE must be just a string and enables the PEP8 check in tox.ini. Change-Id: I6ca187535981d9809ca221e90de38988601f96e0
This commit is contained in:
parent
beda2675e1
commit
bfec3234c3
@ -308,8 +308,8 @@ class ConductorManager(periodic_task.PeriodicTasks):
|
||||
node.save()
|
||||
LOG.warning(_LW("No free conductor workers available to perform "
|
||||
"an action on node %(node)s, setting node's "
|
||||
"power state back to %(power_state)s.",
|
||||
{'node': node.uuid, 'power_state': power_state}))
|
||||
"power state back to %(power_state)s."),
|
||||
{'node': node.uuid, 'power_state': power_state})
|
||||
|
||||
@messaging.expected_exceptions(exception.InvalidParameterValue,
|
||||
exception.MissingParameterValue,
|
||||
|
2
tox.ini
2
tox.ini
@ -47,7 +47,7 @@ commands = {posargs}
|
||||
[flake8]
|
||||
# E711: ignored because it is normal to use "column == None" in sqlalchemy
|
||||
# TODO(yuriyz): Analyze or fix the warnings blacklisted below
|
||||
ignore = E12,E111,E113,E131,E265,E711,F812,H305,H307,H405,H702
|
||||
ignore = E12,E111,E113,E131,E265,E711,F812,H305,H307,H405
|
||||
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
|
||||
|
||||
[hacking]
|
||||
|
Loading…
Reference in New Issue
Block a user