]> gitweb.michael.orlitzky.com - email-validator.git/commitdiff
src/CommandLine.hs: remove redundant Typeable derivation.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 8 Mar 2019 21:36:12 +0000 (16:36 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 8 Mar 2019 21:36:12 +0000 (16:36 -0500)
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."