Skip to content

Commit

Permalink
pl_gen_fused: fix C0325
Browse files Browse the repository at this point in the history
Fix "C0325: Unnecessary parens after 'if' keyword (superfluous-parens)"
  • Loading branch information
pjaitken committed Feb 23, 2021
1 parent 7840831 commit 6fefdc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/pl_gen_fused
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def gen_fused_graph(f, entry, dyn_feats):
f_temp = io.StringIO()

ret = gen_invoke_fused_node(f_temp, 1, False, dyn_feats, False, node)
if (ret is True):
if ret is True:
write_indent(f, 1, 'int resp;')
write_indent(f, 0, '')

Expand Down

0 comments on commit 6fefdc6

Please sign in to comment.