From ed084ac9369b039100510e9da6fa38e47859156c Mon Sep 17 00:00:00 2001 From: Fabian Wunsch Date: Sun, 10 Apr 2022 15:32:50 +0200 Subject: [PATCH] Fixed logical indentation error --- tools/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/formatter.py b/tools/formatter.py index 8c480847..44cfdeed 100644 --- a/tools/formatter.py +++ b/tools/formatter.py @@ -130,7 +130,7 @@ def remove_duplicate_points(entry: dict): current: list = path[i] if current == previous: path.pop(i) - previous = current + previous = current return entry