Lint: E225 missing whitespace around operator

This commit is contained in:
2020-11-07 12:16:36 -05:00
parent 8c623023d5
commit 4a5d50d0e6
4 changed files with 8 additions and 8 deletions

View File

@ -34,7 +34,7 @@ def node_coordinator_state(config, node, action):
API arguments: action={action}
API schema: {"message": "{data}"}
"""
params={
params = {
'state': action
}
response = call_api(config, 'post', '/node/{node}/coordinator-state'.format(node=node), params=params)
@ -54,7 +54,7 @@ def node_domain_state(config, node, action, wait):
API arguments: action={action}, wait={wait}
API schema: {"message": "{data}"}
"""
params={
params = {
'state': action,
'wait': str(wait).lower()
}