Files
PyGithub/github/PullRequestFile.py
T

10 lines
236 B
Python

from GithubObject import *
PullRequestFile = GithubObject(
"PullRequestFile",
InternalSimpleAttributes(
"sha", "filename", "status", "additions", "deletions", "changes",
"blob_url", "raw_url", "patch",
),
)