diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-06-12 09:19:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 09:19:29 -0400 |
commit | d0970daacda0b6f6c2077c2f81948536b574bbe9 (patch) | |
tree | f116548be832ae6786449dd6f1257865efe38026 /std/textproto/mod.ts | |
parent | ca1c2ee82207f2ead857ab4aeca48edff16827ae (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.ts | 4 |
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 + } } } |