mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
7 lines
359 B
Python
7 lines
359 B
Python
{% for method in class.methods|dictsort:"name" %}
|
|
def {{ method.name|join:"_" }}( {% include "GithubObject.Parameters.py" with function=method only %} ):
|
|
{% include "GithubObject.MethodBody.CheckArguments.py" %}
|
|
{% include "GithubObject.MethodBody.DoRequest.py" %}
|
|
{% include "GithubObject.MethodBody.UseResult.py" %}
|
|
{% endfor %}
|