I often have code which for readability reasons I would like to indent in a column-wise structure. For example:
props = {
'name' : foo(df, 'name'),
'address' : foo(df, 'address'),
'phone' : foo(df, 'phone'),
'surname' : foo(df, 'surname'),
'age' : foo(df, 'age'),
'height' : foo(df, 'height'),
'weight' : foo(df, 'weight'),
...
}
This of course results in PEP8 warning due to the extra white spaces, which hurts our style checkers & formatters.
Is there a way to make the column structure and PEP8 live in peace somehow?