Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit 314ee17

Browse files
committed
remove nonnull assert
Signed-off-by: 迷渡 <justjavac@gmail.com>
1 parent 54cc250 commit 314ee17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ module.exports = function init(
436436
);
437437

438438
for (const errorCode of errorCodes) {
439-
const fixes = errorCodeToFixes.get(errorCode)!;
439+
const fixes = errorCodeToFixes.get(errorCode);
440440
if (fixes == null) continue;
441441

442442
for (const fix of fixes) {

0 commit comments

Comments
 (0)