From 9dfe8c6282a38805ceb11ac9b9bbc848955ab785 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Tue, 21 Oct 2025 23:23:57 +0200 Subject: remove superfluous print statement --- fietsboek/transformers/elevation.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fietsboek/transformers/elevation.py b/fietsboek/transformers/elevation.py index 52e6d6f..d5ecd1b 100644 --- a/fietsboek/transformers/elevation.py +++ b/fietsboek/transformers/elevation.py @@ -135,7 +135,6 @@ class FixElevationJumps(Transformer): point_adjustment = current_adjustment if next_point and slope(current_point, next_point) > MAX_ORGANIC_SLOPE: current_adjustment += current_point.elevation - next_point.elevation - print(f"{current_adjustment=}") current_point.elevation += point_adjustment -- cgit v1.2.3