Skip to content

Commit

Permalink
Update print_ids.py to Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Fehler authored Aug 27, 2024
1 parent 507033b commit 873dbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lanelet2_python/scripts/print_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def print_layer(layer, layerName):
layers = {"Points": map.pointLayer, "Line Strings": map.lineStringLayer, "Polygons": map.polygonLayer,
"Lanelets": map.laneletLayer, "Areas": map.areaLayer, "Regulatory Elements": map.regulatoryElementLayer}

for layer_name, layer in layers.iteritems():
for layer_name, layer in layers.items():
if not args.has_id:
print_layer(layer, layer_name)
else:
Expand Down

0 comments on commit 873dbd1

Please sign in to comment.