Looking for a way to tell pylint to ignore the error on the next line. The method for JavaScript is given here, just
// @ts-ignore
I tried some logical variants of that for Python, but didn't succeed.
You can use # pylint: disable=fixme, line-too-long. See this StackOverflow answer.
# pylint: disable=fixme, line-too-long