]> gitweb.michael.orlitzky.com - email-validator.git/blobdiff - src/CommandLine.hs
src/CommandLine.hs: remove redundant Typeable derivation.
[email-validator.git] / src / CommandLine.hs
index 02663396be5b6c278d0e774d5c8047c29780a679..787cc1992f3d0a1c8099a8048d833396698e76af 100644 (file)
@@ -7,7 +7,6 @@ where
 
 import System.Console.CmdArgs (
   Data,
-  Typeable,
   (&=),
   cmdArgs,
   def,
@@ -29,7 +28,7 @@ data Args = Args { accept_a :: Bool,
                    input_file :: Maybe FilePath,
                    output_file :: Maybe FilePath,
                    rfc5322 :: Bool }
-  deriving   (Show, Data, Typeable)
+  deriving   (Show, Data)
 
 description :: String
 description = "Perform naive validation of email addresses."