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