Commit 70d1e8b5 authored by Adam Paquette's avatar Adam Paquette
Browse files

fixed **kwargs not being passed through ratio_checks

parent c80e98fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -407,7 +407,7 @@ class CandidateGraph(nx.Graph):
        Perform a ratio check on all edges in the graph
        """
        for s, d, edge in self.edges_iter(data=True):
            edge.ratio_check(clean_keys=clean_keys)
            edge.ratio_check(clean_keys=clean_keys, **kwargs)

    def compute_homographies(self, clean_keys=[], **kwargs):
        """