mirror of
				https://github.com/Akkudoktor-EOS/EOS.git
				synced 2025-10-30 22:36:21 +00:00 
			
		
		
		
	
		
			
	
	
		
			34 lines
		
	
	
		
			630 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			630 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
|   | {{ fullname | escape | underline}}
 | ||
|  | 
 | ||
|  | .. currentmodule:: {{ module }}
 | ||
|  | 
 | ||
|  | .. autoclass:: {{ objname }}
 | ||
|  |    :members: | ||
|  |    :undoc-members: | ||
|  |    :show-inheritance: | ||
|  |    :inherited-members: | ||
|  | 
 | ||
|  |    {% block methods %}
 | ||
|  |    .. automethod:: __init__
 | ||
|  | 
 | ||
|  |    {% if methods %}
 | ||
|  |    .. rubric:: {{ _('Methods') }}
 | ||
|  | 
 | ||
|  |    .. autosummary::
 | ||
|  |    {% for item in methods %}
 | ||
|  |       ~{{ name }}.{{ item }}
 | ||
|  |    {%- endfor %}
 | ||
|  |    {% endif %}
 | ||
|  |    {% endblock %}
 | ||
|  | 
 | ||
|  |    {% block attributes %}
 | ||
|  |    {% if attributes %}
 | ||
|  |    .. rubric:: {{ _('Attributes') }}
 | ||
|  | 
 | ||
|  |    .. autosummary::
 | ||
|  |    {% for item in attributes %}
 | ||
|  |       ~{{ name }}.{{ item }}
 | ||
|  |    {%- endfor %}
 | ||
|  |    {% endif %}
 | ||
|  |    {% endblock %}
 |