1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00

get rid of redundant imports

This commit is contained in:
Ayman Nadeem 2019-11-19 15:39:45 -05:00
parent 0bc12df5a3
commit 09b49637bf

View File

@ -3,14 +3,13 @@
module Main (main) where module Main (main) where
import System.Environment
import TreeSitter.Unmarshal import TreeSitter.Unmarshal
import qualified TreeSitter.Python.AST as AST import qualified TreeSitter.Python.AST as AST
import qualified TreeSitter.Python as Python import qualified TreeSitter.Python as Python
import Source.Range import Source.Range
import Source.Span import Source.Span
import Data.ByteString.Char8 import Data.ByteString.Char8
import Data.ByteString (pack, readFile, ByteString) import Data.ByteString (readFile)
import System.IO (FilePath) import System.IO (FilePath)
import Options.Applicative hiding (style) import Options.Applicative hiding (style)
import Data.Semigroup ((<>)) import Data.Semigroup ((<>))