Visual Studio Code does not show docstring for ManyToManyField methods set and clear

Listing has many items through ManyToManyField.

class Listing(models.Model):
    # Properties
    items = models.ManyToManyField(Item, related_name="listings", blank=True)

When I hover over methods of items, I only get signatures, but no definitions, even though I have Pylance installed.

No docstring for

No docstring for

How do I make docstrings show everywhere?

Вернуться на верх