mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
9 lines
287 B
Python
9 lines
287 B
Python
{% for attribute in class.attributes|dictsort:"name" %}
|
|
@property
|
|
def {{ attribute.name }}( self ):
|
|
{% if class.isCompletable %}
|
|
self._completeIfNotSet( self._{{ attribute.name }} )
|
|
{% endif %}
|
|
return self._NoneIfNotSet( self._{{ attribute.name }} )
|
|
{% endfor %}
|