Formatting a long string literal single line even though it exceeds the line limit. We should break it up into multiple lines, probably into a multi-line string literal
"some very long string literal that just goes on and on and one without having any real content but it reaches past the line limit"
Should become
"""
some very long string literal that just goes on and on and one without having \
any real content but it reaches past the line limit
"""