Skip to content

Commit 124b57f

Browse files
committed
PR review:
1. Getting rid of `import Control.Apply` and `.Bind` #30 (comment) 2. Prelude made open in test/ (forgotten change)
1 parent 88230df commit 124b57f

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

test/Streams.purs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
module Test.Streams where
22

3-
import Prelude (Unit, bind, (==))
4-
import Control.Apply ((*>))
5-
import Control.Bind ((=<<))
3+
import Prelude
64
import Control.Monad.Eff (Eff)
75
import Control.Monad.Eff.Console (log, CONSOLE)
86
import Control.Monad.Eff.Exception (EXCEPTION)
97
import Node.Encoding (Encoding(..))
108
import Node.Path as Path
119
import Node.Stream as Stream
1210

13-
import Node.FS
11+
import Node.FS (FS)
1412
import Node.FS.Stream (createWriteStream, createReadStream)
1513
import Node.FS.Sync as Sync
1614

test/Test.purs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
module Test where
22

3-
import Prelude (Unit, unless, pure, const, bind, show, unit,
4-
($), (*>), (=<<), (<>), (<<<))
3+
import Prelude
54
import Data.Maybe (Maybe(..))
65
import Data.Either (Either(..), either)
7-
import Control.Apply ((*>))
8-
import Control.Bind ((=<<))
96
import Control.Monad.Eff (Eff)
107
import Control.Monad.Eff.Exception (EXCEPTION, Error, error, throwException,
118
catchException)

0 commit comments

Comments
 (0)