From 1a530f5a2727ec22e20de40698ef53067d257aa4 Mon Sep 17 00:00:00 2001
From: Love Arreborn <love.arreborn@liu.se>
Date: Wed, 12 Jun 2024 11:07:15 +0200
Subject: [PATCH] added pretty print

---
 pipeline.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pipeline.py b/pipeline.py
index a9da13de..4d1dd3c2 100755
--- a/pipeline.py
+++ b/pipeline.py
@@ -16,6 +16,7 @@ Aaron Smith <aaron.smith@lingfil.uu.se>
 """
 # added comment
 
+import pprint
 import time
 import stanza
 
@@ -156,7 +157,7 @@ def run_pipeline(options: AttrOptions, args: list) -> list:
     #            print(d['coh-metrix'])
     # print(l[-2])
 
-    print(result)
+    pprint.pp(result)
     return result
 
 
-- 
GitLab