Is it possible to update the start_date and min_date_allowed parameters of the DatePickerRange within a single callback?
This code:
@app.callback([Output('date-picker', 'start_date'),
Output('date-picker', 'min_date_allowed')],
Input('one-hour-counter', 'n_intervals'))
def update_min_start_date(n_intervals):
if n_intervals != 0:
# return datetime.date.today()
return [dash.no_update, dash.no_update]
produces this error:
