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
In several scripts, the length function in Python is overridden by a variable initialized as "len". This naming error prevents the use of len() elsewhere in the script.
len = len(sys.argv) --> length = len(sys.argv)
The text was updated successfully, but these errors were encountered:
In several scripts, the length function in Python is overridden by a variable initialized as "len". This naming error prevents the use of len() elsewhere in the script.
len = len(sys.argv) --> length = len(sys.argv)
The text was updated successfully, but these errors were encountered: