]> 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 ad60c9f0a7e1667037e49e7131d194adbea0a2a8..787cc1992f3d0a1c8099a8048d833396698e76af 100644 (file)
@@ -7,7 +7,6 @@ where
 
 import System.Console.CmdArgs (
   Data,
-  Typeable,
   (&=),
   cmdArgs,
   def,
@@ -15,12 +14,12 @@ import System.Console.CmdArgs (
   help,
   program,
   summary,
-  typFile)
+  typFile )
 
 
 -- Get the version from Cabal.
-import Paths_email_validator (version)
-import Data.Version (showVersion)
+import Paths_email_validator ( version )
+import Data.Version ( showVersion )
 
 
 -- We optionally accept input/output files to use instead of
@@ -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."