From 6b199442fa5a94cd41c2e708a8338e2da0516fc8 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 8 Mar 2019 16:36:12 -0500 Subject: [PATCH] src/CommandLine.hs: remove redundant Typeable derivation. --- src/CommandLine.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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." -- 2.43.2