From: Michael Orlitzky Date: Fri, 8 Mar 2019 21:36:12 +0000 (-0500) Subject: src/CommandLine.hs: remove redundant Typeable derivation. X-Git-Tag: 1.0.0~7 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=email-validator.git;a=commitdiff_plain;h=6b199442fa5a94cd41c2e708a8338e2da0516fc8 src/CommandLine.hs: remove redundant Typeable derivation. --- diff --git a/src/CommandLine.hs b/src/CommandLine.hs index 0266339..787cc19 100644 --- a/src/CommandLine.hs +++ b/src/CommandLine.hs @@ -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."