PEP8 doesn't say anything about ternary operators, if I am not mistaken. So what do you suggest, how should I write long lines with ternary conditional operators?
some_variable = some_very_long_value \
if very_long_condition_holds \
else very_long_condition_doesnt_hold
or
some_variable = some_very_long_value \
if very_long_condition_holds \
else very_long_condition_doesnt_hold
Which one do you prefer the most?