Commit 376c6dd0 authored by Sumit Sahrawat's avatar Sumit Sahrawat

Fix not in scope errors on ghc-7.*

parent 4ebeb1fb
......@@ -3,6 +3,7 @@
-- Generate, parse, and pretty print UUIDs for use with IPython.
module IHaskell.IPython.Message.UUID (UUID, random, randoms, uuidToString) where
import Control.Applicative ((<$>), (<*>))
import Control.Monad (mzero, replicateM)
import Data.Aeson
import Data.Text (pack)
......
......@@ -8,6 +8,7 @@ module IHaskell.IPython.Message.Writer (ToJSON(..)) where
import Data.Aeson
import Data.Map (Map)
import Data.Monoid (mempty)
import Data.Text (Text, pack)
import IHaskell.IPython.Types
......
......@@ -35,6 +35,7 @@ module IHaskell.IPython.Types (
extractPlain,
) where
import Control.Applicative ((<$>), (<*>))
import Data.Aeson
import Data.ByteString (ByteString)
import Data.List (find)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment