diff options
| author | John MacFarlane <[email protected]> | 2023-08-04 13:18:25 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2023-08-04 13:18:25 -0700 |
| commit | 4670722dfaa91314686d21b4c57d35530aa8646b (patch) | |
| tree | f7c27c0513fe3ac6cca5fb45d407e8e072f6afca /src/Text | |
| parent | 4caa9a080833a09318665ea5bf08b2a8dbb7ac44 (diff) | |
Remove redundant import.
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Pandoc/Writers/OpenDocument.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/OpenDocument.hs b/src/Text/Pandoc/Writers/OpenDocument.hs index d818616ae..8b1090e9e 100644 --- a/src/Text/Pandoc/Writers/OpenDocument.hs +++ b/src/Text/Pandoc/Writers/OpenDocument.hs @@ -15,7 +15,7 @@ Conversion of 'Pandoc' documents to OpenDocument XML. -} module Text.Pandoc.Writers.OpenDocument ( writeOpenDocument ) where import Control.Arrow ((***), (>>>)) -import Control.Monad (unless, liftM, (>=>)) +import Control.Monad (unless, liftM) import Control.Monad.State.Strict ( StateT(..), modify, gets, lift ) import Data.Char (chr) import Data.Foldable (find) |
