You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
where b is unused with rename b to _b. This is fine for ordinal'd arguments, but keyword arguments may be passed by clients, resulting in ArgumentError: unknown keyword: b. Keyword arguments should never be renamed by the auto corrector
The text was updated successfully, but these errors were encountered:
Running
rubocop -a
on a file containingdef foo(a: 1, b: 2)
where
b
is unused with renameb
to_b
. This is fine for ordinal'd arguments, but keyword arguments may be passed by clients, resulting inArgumentError: unknown keyword: b
. Keyword arguments should never be renamed by the auto correctorThe text was updated successfully, but these errors were encountered: