Use of `apply` built-in detectedPYL-W1601
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