summaryrefslogtreecommitdiff
path: root/std/textproto/mod.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-12 09:19:29 -0400
committerGitHub <noreply@github.com>2020-06-12 09:19:29 -0400
commitd0970daacda0b6f6c2077c2f81948536b574bbe9 (patch)
treef116548be832ae6786449dd6f1257865efe38026 /std/textproto/mod.ts
parentca1c2ee82207f2ead857ab4aeca48edff16827ae (diff)
make std deno-lint clean (#6240)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'std/textproto/mod.ts')
-rw-r--r--std/textproto/mod.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/std/textproto/mod.ts b/std/textproto/mod.ts
index 48bbed8bf..e5645a9ed 100644
--- a/std/textproto/mod.ts
+++ b/std/textproto/mod.ts
@@ -114,7 +114,9 @@ export class TextProtoReader {
// example: "Audio Mode" => invalid due to space in the key
try {
m.append(key, value);
- } catch {}
+ } catch {
+ // Pass
+ }
}
}