Skip to content

Commit

Permalink
actually test setting
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep committed Dec 4, 2023
1 parent 603f314 commit 600032a
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Too many positional arguments (6/4) for max_positional=4
# Too many positional arguments (7/4) for max_positional=4
# OK for dummy_variable_rgx ~ "skip_.*"
def f(x, y, z, skip_t, skip_u, skip_v):
def f(w, x, y, z, skip_t, skip_u, skip_v):
pass


# Too many positional arguments (6/4) for max_args=4
# Too many positional arguments (6/3) for dummy_variable_rgx ~ "skip_.*"
def f(x, y, z, t, u, v):
# Too many positional arguments (7/4) for max_args=4
# Too many positional arguments (7/3) for dummy_variable_rgx ~ "skip_.*"
def f(w, x, y, z, t, u, v):
pass

0 comments on commit 600032a

Please sign in to comment.