pylint is returning the below message for the code that I have below :
data.py:125:30: W0108: Lambda may not be necessary (unnecessary-lambda)
in_p = ', '.join(list(map(lambda x: "'{}'".format(x), data)))
Why is lambda not required here and how can it be refactored?