4 | | in particular, `_save_m2m` [https://github.com/django/django/blob/main/django/forms/models.py#L536] calls `save_form_data` [https://github.com/django/django/blob/main/django/db/models/fields/related.py#L2010], but there is no async equivalent to this method |
5 | | even tho `save_form_data` is basically calling `ManyRelatedManager.set` [https://github.com/django/django/blob/main/django/db/models/fields/related_descriptors.py#L1275] which has an async equivalent |
| 4 | in particular, [https://github.com/django/django/blob/main/django/forms/models.py#L536 _save_m2m] calls [https://github.com/django/django/blob/main/django/db/models/fields/related.py#L2010 save_form_data], but there is no async equivalent to this method |
| 5 | even tho `save_form_data` is basically calling [https://github.com/django/django/blob/main/django/db/models/fields/related_descriptors.py#L1275 ManyRelatedManage.set()] which has an async equivalent |