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
Describe the issue
Shadowing a builtin makes your code more difficult to read and maintain. It may also be a source of bugs as you can reference the builtin by mistake.
Expected behavior
It is not ok to shadow builtins with variables which are local to a function or method, so local variables should be renamed to not shadow builtins.
The text was updated successfully, but these errors were encountered:
Describe the issue
Shadowing a builtin makes your code more difficult to read and maintain. It may also be a source of bugs as you can reference the builtin by mistake.
Expected behavior
It is not ok to shadow builtins with variables which are local to a function or method, so local variables should be renamed to not shadow builtins.
The text was updated successfully, but these errors were encountered: