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
https://www.python.org/dev/peps/pep-3102/ allows for a * to delineate the following arguments as keyword-only, meaning they cannot be called positionally, even if they have no default value.
However, with mkdocstrings/pytkdocs, it seems the star is added between each argument. e.g.:
{% set v = True %}
{% set w = True %}
{% for item in items %}
{% if w %}
{% set w = False %}
{% endif %}
{{ item }}, v={{ v }}, w={{ w }}
{% if v %}
{% set v = False %}
{% endif %}
{% endfor %}
https://www.python.org/dev/peps/pep-3102/ allows for a
*
to delineate the following arguments as keyword-only, meaning they cannot be called positionally, even if they have no default value.However, with mkdocstrings/pytkdocs, it seems the star is added between each argument. e.g.:
renders as
Feel free to move this issue to pytkdocs if it's more suited to be there.
The text was updated successfully, but these errors were encountered: