Remove redundant imports following simplifications in 9a11840

This commit is contained in:
Tissevert 2023-08-20 22:36:35 +02:00
parent feb647bcb4
commit fd88140d44
1 changed files with 3 additions and 4 deletions

View File

@ -8,11 +8,10 @@ module Arguments (
#if !MIN_VERSION_base(4,11,0)
import Data.Monoid ((<>))
#endif
import Control.Applicative ((<|>), (<**>), optional)
import Control.Applicative ((<**>), optional)
import Options.Applicative
( Parser, ReadM, argument, auto, eitherReader, execParser, flag', fullDesc
, header, help, helper, info, infoOption, long, metavar, short, str, switch
, value )
( Parser, ReadM, argument, auto, eitherReader, execParser, fullDesc, header
, help, helper, info, infoOption, long, metavar, short, str, switch, value )
import qualified Options.Applicative as Optparse (option)
import System.FilePath (dropTrailingPathSeparator, isValid)