diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-10-11 17:27:00 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-10-11 17:27:00 -0700 |
commit | 0b91c73456ca4506d50495f58b3b803b389f96e7 (patch) | |
tree | 0a2981817f4fd134c44ded7b2a8a16589dd3f676 /src/Text/Pandoc | |
parent | 1e8a25ad69db8fa372ac4ddbb5ac05ffb00ed052 (diff) | |
download | pandoc-0b91c73456ca4506d50495f58b3b803b389f96e7.tar.gz |
Removed unnecessary import.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Error.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Error.hs b/src/Text/Pandoc/Error.hs index 7b0976c6e..0a4e08175 100644 --- a/src/Text/Pandoc/Error.hs +++ b/src/Text/Pandoc/Error.hs @@ -35,7 +35,7 @@ import Text.Parsec.Error import Text.Parsec.Pos hiding (Line) import Text.Pandoc.Compat.Except import GHC.Generics (Generic) -import Data.Generics (Data, Typeable) +import Data.Generics (Typeable) import Control.Exception (Exception) type Input = String |