Skip to content

Commit

Permalink
fix: missing closing quote
Browse files Browse the repository at this point in the history
  • Loading branch information
koebi authored Aug 26, 2024
1 parent acd21dc commit f9f0d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ORStools/proc/directions_points_layer_proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def sort(f):
if len(points) != len(set(points)):
raise exceptions.DuplicateError(
"There are duplicate points in the input layer. Traveling Salesman Optimization does not allow this.
Either remove the duplicates or deselect Traveling Salesman.
Either remove the duplicates or deselect Traveling Salesman."
)

params = get_params_optimize(points, profile, optimization_mode)
Expand Down

0 comments on commit f9f0d97

Please sign in to comment.