Skip to content

Commit

Permalink
chore: fix file lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bombillazo committed Feb 4, 2024
1 parent 82e3f6d commit fee0469
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions query/decode.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import { Oid } from "./oid.ts";
import {
bold,
yellow,
} from "../deps.ts";
import { bold, yellow } from "../deps.ts";
import {
decodeBigint,
decodeBigintArray,
Expand Down Expand Up @@ -202,7 +199,7 @@ function decodeText(value: Uint8Array, typeOid: number) {
} catch (_e) {
console.error(
bold(yellow(`Error decoding type Oid ${typeOid} value`)) +
_e.message +
_e.message +
"\n" +
bold("Defaulting to null."),
);
Expand Down

1 comment on commit fee0469

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No typecheck tests failure

This error was most likely caused by incorrect type stripping from the SWC crate

Please report the following failure to https://github.com/denoland/deno with a reproduction of the current commit

Failure log

Please sign in to comment.