From f9f0d9727441e548dacfc4d417f55d7f408c67f7 Mon Sep 17 00:00:00 2001 From: Jakob Schnell Date: Mon, 26 Aug 2024 14:57:41 +0200 Subject: [PATCH] fix: missing closing quote --- ORStools/proc/directions_points_layer_proc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ORStools/proc/directions_points_layer_proc.py b/ORStools/proc/directions_points_layer_proc.py index 24f0d20..bc6d265 100644 --- a/ORStools/proc/directions_points_layer_proc.py +++ b/ORStools/proc/directions_points_layer_proc.py @@ -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)