utils: raspberrypi: ctt: Fix pycodestyle E211
E211 whitespace before '[' Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
This commit is contained in:
parent
adb5dedb8f
commit
6eb1bce9c7
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ def parse_input():
|
|||
arguments = sys.argv[1:]
|
||||
if len(arguments)%2 != 0:
|
||||
raise ArgError('\n\nERROR! Enter value for each arguent passed.')
|
||||
params = arguments [0::2]
|
||||
vals = arguments [1::2]
|
||||
params = arguments[0::2]
|
||||
vals = arguments[1::2]
|
||||
args_dict = dict(zip(params, vals))
|
||||
json_output = get_config(args_dict, '-o', None, 'string')
|
||||
directory = get_config(args_dict, '-i', None, 'string')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue