Skip to content
This repository has been archived by the owner on Sep 8, 2021. It is now read-only.

Commit

Permalink
fixed lint error with import order
Browse files Browse the repository at this point in the history
  • Loading branch information
dskamiotis committed May 20, 2021
1 parent 23a29b7 commit 2efb108
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/result.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// ----- Imports ----- //

import { withDefault } from './option';
import type { Result } from './result';
import { andThen, either, err, map, mapError, ok, toOption } from './result';
import type { Result } from './result';

// ----- Setup ----- //

Expand Down
2 changes: 1 addition & 1 deletion src/result.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ----- Imports ----- //

import type { Option } from './option';
import { none, some } from './option';
import type { Option } from './option';

// ----- Types ----- //

Expand Down

0 comments on commit 2efb108

Please sign in to comment.