diff options
| -rw-r--r-- | src/Text/Pandoc/Class/PandocPure.hs | 6 |
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, |
