How should i format a long for in statement in python ?
for param_one, param_two, param_three, param_four, param_five in get_params(some_stuff_here, and_another stuff):
I have found that i can brake a for in statement only with a backslash :
for param_one, param_two, param_three, param_four, param_five \
in get_params(some_stuff_here, and_another_stuff):
But my linter has issues with this formatting , what is a Pythonic way of formatting statements like this ?