Skip to content

Commit

Permalink
Fix for ukn_arg with pointers on pointers on lists etc - close 42Scho…
Browse files Browse the repository at this point in the history
  • Loading branch information
N01ch committed Oct 29, 2021
1 parent 0fc26aa commit 68067ad
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions norminette/rules/check_func_arguments_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ def run(self, context):
else:
break
i += 1
elif context.check_token(i, "LBRACKET") is True:
i = context.skip_nest(i) + 1
elif context.check_token(i, "COMMA") is True:
i += 1
elif context.check_token(i, "RPARENTHESIS") is not True:
i = self.check_arg_format(context, i)
if i == -1:
Expand Down

0 comments on commit 68067ad

Please sign in to comment.