From e52b82ba5b54af46feb03ebb7fcff27d607a80eb Mon Sep 17 00:00:00 2001 From: Ayman Nadeem Date: Thu, 10 Oct 2019 14:09:35 -0400 Subject: [PATCH] import module with the right pack --- semantic-ast/src/CLI.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/semantic-ast/src/CLI.hs b/semantic-ast/src/CLI.hs index b6eda01d9..6e70e3104 100644 --- a/semantic-ast/src/CLI.hs +++ b/semantic-ast/src/CLI.hs @@ -8,7 +8,8 @@ import TreeSitter.Python.AST import TreeSitter.Python import Source.Range import Source.Span -import Data.ByteString (readFile, ByteString) +import Data.ByteString.Char8 +import Data.ByteString (pack, readFile, ByteString) import System.IO (FilePath) import Options.Applicative hiding (style) import Data.Semigroup ((<>))