File tree 3 files changed +3
-3
lines changed
src/mkdocstrings_handlers/python/templates/material/_base
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 45
45
{% if config.separate_signature %}
46
46
{% filter highlight(language="python", inline=False) %}
47
47
{% filter format_code(config.line_length) %}
48
- {% if show_full_path %}{{ attribute.path }}{% else %}{{ attribute. name }}{% endif % }
48
+ {{ attribute.name }}
49
49
{% if attribute.annotation %}: {{ attribute.annotation|safe }}{% endif %}
50
50
{% if attribute.value %} = {{ attribute.value|safe }}{% endif %}
51
51
{% endfilter %}
Original file line number Diff line number Diff line change 49
49
{% if "__init__" in class.members %}
50
50
{% with function = class.members["__init__"] %}
51
51
{% filter format_signature(function, config.line_length, crossrefs=config.signature_crossrefs) %}
52
- {% if show_full_path %}{{ class.path }}{% else %}{{ class. name }}{% endif % }
52
+ {{ class.name }}
53
53
{% endfilter %}
54
54
{% endwith %}
55
55
{% endif %}
Original file line number Diff line number Diff line change 45
45
{% block signature scoped %}
46
46
{% if config.separate_signature %}
47
47
{% filter format_signature(function, config.line_length, crossrefs=config.signature_crossrefs) %}
48
- {% if show_full_path %}{{ function.path }}{% else %}{{ function. name }}{% endif % }
48
+ {{ function.name }}
49
49
{% endfilter %}
50
50
{% endif %}
51
51
{% endblock signature %}
You can’t perform that action at this time.
0 commit comments