From 419f5961a5f22385faff5f603abe9b2c5ced48ef Mon Sep 17 00:00:00 2001 From: Al Date: Tue, 31 May 2016 11:01:37 -0400 Subject: [PATCH] [fix] unused var --- scripts/geodata/osm/intersections.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/geodata/osm/intersections.py b/scripts/geodata/osm/intersections.py index 3ae68d05..ec7ecffb 100644 --- a/scripts/geodata/osm/intersections.py +++ b/scripts/geodata/osm/intersections.py @@ -101,7 +101,6 @@ class OSMIntersectionReader(object): for node_id in deps: node_index = self.binary_search(self.node_ids, node_id) if node_index is not None: - way_ids.append(way_id) self.intersection_edges_nodes.append(node_id) self.intersection_edges_ways.append(way_id) self.way_props.Put(safe_encode(way_id), json.dumps(props))