Does python have any suggestions on how highly nested calls should look? For example, here is an example:
handler = SAXEventHandler(
target=to_dict(
target=dict_filter(key='title', value='Brown Christmas',
target=dict_filter(key='vendor_id', value='02528_MLNA',
target=print_me()
)
)
)
)
Though it could also be:
handler = SAXEventHandler(
target=to_dict(target=dict_filter(key='title', value='Brown Christmas',
target=dict_filter(key='vendor_id', value='02528_MLNA', target=print_me()))))
Or any number of variations. Are there guidelines with how this should be done with code similar to the above?