Skip to content

Commit 4c10666

Browse files
committed
style: fix eslint
1 parent d8f6588 commit 4c10666

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/github/graphql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { RepositoryWithCommitHistory } from '../github/types'
1818
function formatLogMessage(...params: Record<string, unknown>[]): string {
1919
return Object.entries(Object.assign({}, ...params) as Record<string, unknown>)
2020
.map(([key, value]) => {
21-
return `${String(key)}: ${typeof value === 'string' ? value : JSON.stringify(value)}`
21+
return `${key}: ${typeof value === 'string' ? value : JSON.stringify(value)}`
2222
})
2323
.join(', ')
2424
}

src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import {
1919
NoFileChanges,
2020
BranchNotFound,
2121
BranchCommitNotFound,
22-
InputRepositoryInvalid,
2322
InputBranchNotFound,
2423
} from './errors'
2524

0 commit comments

Comments
 (0)