today I have encountered thing I do not really know why it happened.
I POSTed request with form that had MultipleModelChoiceField, in frontend I selected multiple of them (id 2 and 3), then in debug in PyCharm I wanted to see my POST request and saw this [see image].
With form.POST.get("people") I got >>> "3" as a result. After sanitizing data with After I accessed form.cleaned_data, the result was good, but I don't quite understand why did it happen, can someone please, try to explain what happened and why?
Thanks all!