Fixed logical indentation error

This commit is contained in:
Fabian Wunsch 2022-04-10 15:32:50 +02:00 committed by Hans5958
parent 149a1e4209
commit ed084ac936

View file

@ -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