You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a type that I am unable to not get a DOC105 for.
If I have something like:
def my_function(
my_variable_1: int,
my_variable_2: Literal[
"option_1",
"option_2",
"option_3",
"option_4",
"option_5",
"option_6",
],
) -> None:
"""
Some random function.
:param my_variable_1: Some integer that does something.
:type my_variable_1: int
:param my_variable_2: Some literal that does something.
:type my_variable_2: Literal[
"option_1",
"option_2",
"option_3",
"option_4",
"option_5",
"option_6",
]
"""
And I can't quite work out how to get the type for `my_variable_2` to work.
Relevant settings I am using are:
Hi,
I have a type that I am unable to not get a DOC105 for.
If I have something like:
skip-checking-short-docstrings = false
style = 'sphinx'
The text was updated successfully, but these errors were encountered: