Ondřej Měkota
Ondřej Měkota
Video of the behaviour:  Also, if I type backspace, and then any key the first suggestion gets automatically selected.
Hello, thank you for suggestion. The parameter types should already work with the `:DocstringTypes` command ``` def foo(A: list[dict[str, str]]) -> int: return 1 ``` would get this docstring: ```...
Sorry, for the delay... 🤔 you are correct, the class docstring does not contain methods (I use google docstring 99% of the time, [which doesn't include it](https://google.github.io/styleguide/pyguide.html#384-classes), so I haven't...
Thank you for the feedback. According to [PEP 257](https://peps.python.org/pep-0257/), "*The docstring for a function or method should summarize its behavior and document its arguments, return value(s), side effects, exceptions raised,...
methods and functions only (in this issue)
# expected behaviour ## 1. before ```{python} def foo(a: str): """ Some description Args: a (str): bar Returns: something """ return 0 ``` ## 2. making changes in function Changes...