By default, when you create a formset from a model, the formset will use a queryset that includes all objects in the model (e.g., Author.objects.all()).In most use cases, people will want to use a specific subset of data and will construct queryset by hand. Or they want to use an empty queryset, just to add data.In my opinion it would be better to set the empty queryset as a default.Do you agree?