[libcamera-devel,05/24] utils: raspberrypi: ctt: Fix pycodestyle E211

Message ID 20200512000322.11753-6-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • utils: raspberrypi: ctt: Comply with pycodestyle
Related show

Commit Message

Laurent Pinchart May 12, 2020, 12:03 a.m. UTC
E211 whitespace before '['

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 utils/raspberrypi/ctt/ctt_tools.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Patch

diff --git a/utils/raspberrypi/ctt/ctt_tools.py b/utils/raspberrypi/ctt/ctt_tools.py
index 67e882a24c37..f00f2bbc8299 100644
--- a/utils/raspberrypi/ctt/ctt_tools.py
+++ b/utils/raspberrypi/ctt/ctt_tools.py
@@ -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')