mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
8 lines
422 B
Python
8 lines
422 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.CheckResult.py" %}
|
|
{% include "GithubObject.MethodBody.UseResult.py" %}
|
|
{% endfor %}
|