Remove redundant imports following simplifications in 9a11840
This commit is contained in:
parent
feb647bcb4
commit
fd88140d44
1 changed files with 3 additions and 4 deletions
|
@ -8,11 +8,10 @@ module Arguments (
|
||||||
#if !MIN_VERSION_base(4,11,0)
|
#if !MIN_VERSION_base(4,11,0)
|
||||||
import Data.Monoid ((<>))
|
import Data.Monoid ((<>))
|
||||||
#endif
|
#endif
|
||||||
import Control.Applicative ((<|>), (<**>), optional)
|
import Control.Applicative ((<**>), optional)
|
||||||
import Options.Applicative
|
import Options.Applicative
|
||||||
( Parser, ReadM, argument, auto, eitherReader, execParser, flag', fullDesc
|
( Parser, ReadM, argument, auto, eitherReader, execParser, fullDesc, header
|
||||||
, header, help, helper, info, infoOption, long, metavar, short, str, switch
|
, help, helper, info, infoOption, long, metavar, short, str, switch, value )
|
||||||
, value )
|
|
||||||
import qualified Options.Applicative as Optparse (option)
|
import qualified Options.Applicative as Optparse (option)
|
||||||
import System.FilePath (dropTrailingPathSeparator, isValid)
|
import System.FilePath (dropTrailingPathSeparator, isValid)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue