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
{% block attributes_summary %}
{% if attributes %}
.. rubric:: Attributes
{% for item in attributes %}
{%- if item not in inherited_members %}
.. autoattribute:: {{ item }}
{%- endif -%}
{%- endfor %}
{% endif %}
{% endblock -%}
We set if attributes, but it is checking any attributes rather than only inherited attributes. We need to only set .. rubric:: Attributes if there are inherited members.
This fix belongs in the Sphinx template in qiskit-addon-mpf. Also update Qiskit SDK, which is the only other repo with this template.
The text was updated successfully, but these errors were encountered:
From #2328, we have some pages like this:
This happens because of this config
We set
if attributes
, but it is checking any attributes rather than only inherited attributes. We need to only set.. rubric:: Attributes
if there are inherited members.This fix belongs in the Sphinx template in qiskit-addon-mpf. Also update Qiskit SDK, which is the only other repo with this template.
The text was updated successfully, but these errors were encountered: