villebro commented on pull request #10084: URL: https://github.com/apache/incubator-superset/pull/10084#issuecomment-645344104
@Nj-kol the problem is that `pylint` expects lines to be no longer than 88 characters. You can either add a `# pylint: disable=line-too-long` (prefixed with two spaces) to the end of the lines that exceed 88 characters, or break the long expressions into multi-line strings. I personally prefer splitting across multiple rows if it doesn't make the expression less readable, but both are ok. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
