I'm not really sure why but lately, when reviewing code, I've preferred code where if/else-if (or if/elif) chains have an explicit else, even if it doesn't affect code behaviour.
E.g. in hypothetical #Python,
for item in collection:
if (first_condition):
item.modify_state()
elif (second_condition):
item.modify_state_differently()
I actually find it more readable when there's
else:
continue
in the loop too.
Is it just me? Or is it actually a thing?