Is there a way to improve this code to make it shorter?
if date_a is None and date_b is None and date_c is None:
start_date = current_date
else:
if date_a is not None:
start_date = date_a
elif date_b is not None:
start_date = date_b
elif date_c is not None:
start_date = date_c