PyCharm Docstring :func: and :meth: not working

487 Views Asked by At

I am writing a documentation in my project's code but the inline link to a function/method doesn't work. It simply doesn't show up as expected when I use CTRL + Q:

enter image description here

EDIT:

Code:

class Editor:

    def picture(self):
        """ The same as :func:`pictures` """
        pass

    def pictures(self):
        pass
0

There are 0 best solutions below