Skip to content

Commit

Permalink
refractor: remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
merydian authored and koebi committed Dec 8, 2023
1 parent 80b9e37 commit 3ca74ee
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ORStools/gui/ORStoolsDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,9 +520,7 @@ def _reindex_list_items(self):
for idx, x in enumerate(items):
coords = x.split(":")[1]
item = f"Point {idx}:{coords}"
print(coords)
x, y = (float(i) for i in coords.split(", "))
print(x, y)
point = QgsPointXY(x, y)

self.routing_fromline_list.addItem(item)
Expand Down

0 comments on commit 3ca74ee

Please sign in to comment.