I have this really long line in Python, due to several reasons, that I'm trying to break up.
long_variable_name = somelongmodule.SomeLongClassName.VeryLongFunctionName(...
I know the recommended way to break up a line is at the parentheses, but I haven't even gotten there yet. What might be some solution to this problem?