@@ -49,7 +49,7 @@ Context:
49
49
{% endif %}
50
50
{% with heading_level = heading_level + extra_level %}
51
51
{% for attribute in attributes |order_members (config .members_order , members_list ) %}
52
- {% if members_list is not none or attribute .is_public ( check_name = False ) %}
52
+ {% if members_list is not none or attribute .is_public %}
53
53
{% include attribute |get_template with context %}
54
54
{% endif %}
55
55
{% endfor %}
@@ -69,7 +69,7 @@ Context:
69
69
{% endif %}
70
70
{% with heading_level = heading_level + extra_level %}
71
71
{% for class in classes |order_members (config .members_order , members_list ) %}
72
- {% if members_list is not none or class .is_public ( check_name = False ) %}
72
+ {% if members_list is not none or class .is_public %}
73
73
{% include class |get_template with context %}
74
74
{% endif %}
75
75
{% endfor %}
@@ -90,7 +90,7 @@ Context:
90
90
{% with heading_level = heading_level + extra_level %}
91
91
{% for function in functions |order_members (config .members_order , members_list ) %}
92
92
{% if not (obj .kind .value == "class" and function .name == "__init__" and config .merge_init_into_class ) %}
93
- {% if members_list is not none or function .is_public ( check_name = False ) %}
93
+ {% if members_list is not none or function .is_public %}
94
94
{% include function |get_template with context %}
95
95
{% endif %}
96
96
{% endif %}
@@ -112,7 +112,7 @@ Context:
112
112
{% endif %}
113
113
{% with heading_level = heading_level + extra_level %}
114
114
{% for module in modules |order_members (config .members_order .alphabetical , members_list ) %}
115
- {% if members_list is not none or module .is_public ( check_name = False ) %}
115
+ {% if members_list is not none or module .is_public %}
116
116
{% include module |get_template with context %}
117
117
{% endif %}
118
118
{% endfor %}
@@ -137,7 +137,7 @@ Context:
137
137
138
138
{% if not (obj .is_class and child .name == "__init__" and config .merge_init_into_class ) %}
139
139
140
- {% if members_list is not none or child .is_public ( check_name = False ) %}
140
+ {% if members_list is not none or child .is_public %}
141
141
{% if child .is_attribute %}
142
142
{% with attribute = child %}
143
143
{% include attribute |get_template with context %}
0 commit comments