Commit 5a91d4a1 authored by Adam Paquette's avatar Adam Paquette
Browse files

Added pragma no cover to compute_weight method on the network.

parent 02f60204
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -768,7 +768,7 @@ class CandidateGraph(nx.Graph):
        else:
            return list(nx.find_cliques(self))

    def compute_weight(self, clean_keys, **kwargs):
    def compute_weight(self, clean_keys, **kwargs): # pragma: no cover
        """
        Computes a voronoi weight for each edge in a given graph.
        Can function as is, but is slightly optimized for complete subgraphs.