Bug Fix: A function name was overloaded

This commit is contained in:
Dominik Moritz Roth 2021-10-04 12:27:12 +02:00
parent 4c4821c7a3
commit 73364935f0

View File

@ -671,11 +671,11 @@ def recommendNBooks(G, mu, std, n, removeTopListsB=True, removeUselessRecommende
addScoreToLabels(G)
def fullGraph(G, removeTopLists=True):
def fullGraph(G, removeTopListsB=True):
removeEdge(G)
removeHighSpanTags(G, 7)
removeDangling(G, alsoBooks=False)
if removeTopLists:
if removeTopListsB:
removeTopLists(G)
pruneTags(G, 3)
removeDangling(G, alsoBooks=True)