A variable name with a trailing underscore gives Unknown target name:
$ cat test.py
def f(id_: str):
"""Function.
:param id_: A string."""
print()
$ flake8 test.py
test.py:4:1: RST306 Unknown target name: "id".
Could this be related to sphinx issue 1462?
A variable name with a trailing underscore gives
Unknown target name:Could this be related to sphinx issue 1462?