The project I'm working on runs a linting check before validating the build. The linter checks PEP8 compliance among other things. I have a base64 string, that's about 5,000 characters long (it's a file converted into a base64 string), and so of course, the linter doesn't like it.
It seems to me like it would be really dumb to just split the string into 60+ lines just to make it PEP8 compliant.
Having the file as a physical file and reading it on the fly isn't really an option for the context. Reading a file from an external source isn't an option either.
Edit: The PEP8 compliance check is done with Flake8
Looking for suggestions on how to go about this.