utils: raspberrypi: ctt: Fix pycodestyle E701
E701 multiple statements on one line (colon) 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
863e31fa52
commit
e31b104fd1
1 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,8 @@ def print_newline(fout, state):
|
|||
|
||||
def process_char(c, fout, state):
|
||||
if c == '{':
|
||||
if not state["skipnewline"]: print_newline(fout, state)
|
||||
if not state["skipnewline"]:
|
||||
print_newline(fout, state)
|
||||
fout.write(c)
|
||||
state["indent"] += 1
|
||||
print_newline(fout, state)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue