Files
PyGithub/codegen/templates/GithubObject.PublicMethods.py
T

7 lines
365 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 %}