Commit c97476b3 authored by Jay's avatar Jay Committed by jay
Browse files

Remove extra print statement

parent cd78c8fe
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -245,7 +245,6 @@ class GeoDataset(object):
                                                           [llon, ulat],
                                                           [llat, llon]]}
                self._footprint = ogr.CreateGeometryFromJson(json.dumps(geom))
            print(self._footprint)
        return self._footprint

    @property
+0 −1
Original line number Diff line number Diff line
@@ -149,7 +149,6 @@ class CandidateGraph(nx.Graph):
                for k, v in input_adjacency.items():
                    input_adjacency[k] = [os.path.join(basepath, i) for i in v]
                    input_adjacency[os.path.join(basepath, k)] = input_adjacency.pop(k)
#        print(input_adjacency)
        return cls(input_adjacency)

    def get_name(self, node_index):