File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class Repository {
56
56
return multipleFileContentsByPath
57
57
}
58
58
59
- async createPullRequest ( { title, body, fileContentsByPath} ) {
59
+ async createPullRequest ( { title, body, fileContentsByPath } ) {
60
60
// TODO: Create branch, update files
61
61
// GET master state when we read files
62
62
// https://octokit.github.io/rest.js/#api-Git-createRef
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ class AllContributorBotError extends Error {
7
7
8
8
class ResourceNotFoundError extends AllContributorBotError {
9
9
constructor ( filepath , fullRepoName ) {
10
- super ( `File ${ filepath } was not found in the repository (${ fullRepoName } ).` )
10
+ super (
11
+ `File ${ filepath } was not found in the repository (${ fullRepoName } ).` ,
12
+ )
11
13
this . name = this . constructor . name
12
14
}
13
15
}
You can’t perform that action at this time.
0 commit comments