aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2022-10-31 22:15:09 -0700
committerJohn MacFarlane <[email protected]>2022-10-31 22:15:09 -0700
commit0c641c1025eebbeab476bbc3b462b9cc780bb286 (patch)
tree3bcc0e485b1f8c565f386b977592d8d060b8e7d0
parent9620ce3ea05b5e31579f2839dff1a70347adc24d (diff)
Fix import.
-rw-r--r--src/Text/Pandoc/Class/PandocPure.hs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Text/Pandoc/Class/PandocPure.hs b/src/Text/Pandoc/Class/PandocPure.hs
index e876107d6..c86b20a05 100644
--- a/src/Text/Pandoc/Class/PandocPure.hs
+++ b/src/Text/Pandoc/Class/PandocPure.hs
@@ -29,11 +29,9 @@ module Text.Pandoc.Class.PandocPure
) where
import Codec.Archive.Zip
+import Control.Monad.Trans ( MonadTrans(lift) )
import Control.Monad.Except
- ( MonadTrans(lift),
- ExceptT(..),
- MonadError(throwError),
- runExceptT )
+ ( ExceptT(..), MonadError(throwError), runExceptT )
import Control.Monad.State.Strict
( StateT(StateT),
State,