Python logoPython/
PYL-W1601

Use of `apply` built-in detectedPYL-W1601

Major severityMajor
Bug Risk categoryBug Risk

The apply built-in function has been deprecated since Python 2.3. It's use shall be avoided. Use function(*args, **keywords) instead of apply(function, args, keywords) Ref: https://docs.python.org/2/library/functions.html#apply