From af6d2809b5cfcbb2ea5b2acd871b404bd9241944 Mon Sep 17 00:00:00 2001
From: XANTRONIX Industrial <xan@xantronix.com>
Date: Sun, 2 Mar 2025 00:18:43 -0500
Subject: [PATCH] Whitespace

---
 lib/xmet/hodograph.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/xmet/hodograph.py b/lib/xmet/hodograph.py
index a749016..b3552ee 100644
--- a/lib/xmet/hodograph.py
+++ b/lib/xmet/hodograph.py
@@ -33,7 +33,7 @@ class Hodograph():
         r = self.radius * min(wind_speed, WIND_SPEED_MAX) / WIND_SPEED_MAX
 
         return (
-            self.offset_x  * self.width  + r * math.cos(radians(wind_dir)),
+            self.offset_x * self.width  + r * math.cos(radians(wind_dir)),
             self.offset_y * self.height + r * math.sin(radians(wind_dir))
         )