I am running into an issue with pylint and lambda functions. To ignore the error I am using:
some_thing = lambda ... # pylint: disable=E731
I have also tried:
# pylint: disable=E731
some_thing = lambda ....
# pylint: disable=E731
Running my pipeline I have tried:
pylint:
script: ... pylint --disable=E731
When it runs the check is not being disabled.
There is no config file. It is all handled inline. But when run I am getting E731 do not assign a lambda expression, use a def
.