We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec5320 commit aa7c170Copy full SHA for aa7c170
.github/workflows/mypy_primer_comment.yml
@@ -51,7 +51,7 @@ jobs:
51
let data = fs.readFileSync('fulldiff.txt', { encoding: 'utf8' })
52
// posting comment fails if too long, so truncate
53
if (data.length > 30000) {
54
- data = data.substring(0, 30000) + `\n\n... (truncated ${diff.length - 30000} chars) ...\n`
+ data = data.substring(0, 30000) + `\n\n... (truncated ${data.length - 30000} chars) ...\n`
55
}
56
57
console.log("Diff from mypy_primer:")
0 commit comments