mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
from GithubObject import *
|
|
|
|
PullRequestFile = GithubObject(
|
|
"PullRequestFile",
|
|
InternalSimpleAttributes(
|
|
"sha", "filename", "status", "additions", "deletions", "changes",
|
|
"blob_url", "raw_url", "patch",
|
|
),
|
|
)
|