Skip to content

Commit

Permalink
Linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MajorLift committed Jun 6, 2024
1 parent 04472d5 commit 2523dc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parsers/bool.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { bigIntToBytes, concatBytes } from '@metamask/utils';
import { coerce, create, literal, union, boolean } from '@metamask/superstruct';
import { bigIntToBytes, concatBytes } from '@metamask/utils';

import { ParserError } from '../errors';
import { number } from './number';
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/function.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { coerce, create, instance, object, union } from '@metamask/superstruct';
import {
assert,
bytesToHex,
Expand All @@ -6,7 +7,6 @@ import {
hexToBytes,
StrictHexStruct,
} from '@metamask/utils';
import { coerce, create, instance, object, union } from '@metamask/superstruct';

import { ParserError } from '../errors';
import { fixedBytes } from './fixed-bytes';
Expand Down

0 comments on commit 2523dc2

Please sign in to comment.