From 5d88d17099f6d4c858b42c48b0b8f7b48dcfcdae Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 1 Mar 2020 00:33:18 +0000 Subject: [PATCH] Don't print the parsed node --- app/Main.hs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Main.hs b/app/Main.hs index df6bed7..e83b9a7 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -49,6 +49,4 @@ main = do text <- T.readFile filename case parseProfFile filename text of Left e -> putStrLn e - Right f -> do - print f - void $ defaultMain myApp $ newUiState (profInfoLines f) (profNode f) + Right f -> void $ defaultMain myApp $ newUiState (profInfoLines f) (profNode f)