Commit 733e32e1 authored by Victor Zimmermann's avatar Victor Zimmermann
Browse files

bugfix

parent 121f9d68
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ def induce(topic_name: str, result_list: list) -> (nx.Graph, list, dict):

            graph_in_existence = True

            with open(node_dict_name, 'r') as node_file, open(edge_dict_name, 'r') as edge_file:
            with open(config.graph+node_dict_name, 'r') as node_file, open(config.graph+edge_dict_name, 'r') as edge_file:
        
                node_freq_dict = json.load(node_file)
                edge_freq_dict = json.load(edge_file)
@@ -154,7 +154,7 @@ def induce(topic_name: str, result_list: list) -> (nx.Graph, list, dict):

        node_freq_dict, edge_freq_dict = frequencies(target_string, result_list)
        
        with open(node_dict_name, 'w') as node_file, open(edge_dict_name, 'w') as edge_file:
        with open(config.graph+node_dict_name, 'w') as node_file, open(config.graph+edge_dict_name, 'w') as edge_file:
            node_file.write(json.dumps(node_freq_dict))
            edge_file.write(json.dumps(edge_freq_dict))