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 mathod |
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, `_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 mathod |
| 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 |