From 4145abd14684f2a4ad748565c8ef12389fdb4456 Mon Sep 17 00:00:00 2001
From: Victor Zimmermann <zimmermann@cl.uni-heidelberg.de>
Date: Thu, 29 Mar 2018 22:12:28 +0200
Subject: [PATCH] Update absint.py

---
 source/absinth.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/absinth.py b/source/absinth.py
index f8ceb8e..f5f6752 100644
--- a/source/absinth.py
+++ b/source/absinth.py
@@ -1045,7 +1045,7 @@ def print_stats(stat_dict: dict, graph: nx.Graph) -> None:
     stat_string.append('Tuples gained through merging: {}.'.format(stat_dict['pipe_gain']))
     stat_string.append('Sense inventory:')
     for hub in stat_dict['hubs'].keys():
-        stat_string.append(' -> {} ({}): {}.'.format(hub,local_clustering_coefficient(graph,hub), ", ".join(stat_dict['hubs'][hub])))
+        stat_string.append(' -> {}: {}.'.format(hub, ", ".join(stat_dict['hubs'][hub])))
     
     print('\n[A] '+'\n[A] '.join(stat_string)+'\n')
     
-- 
GitLab