Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeftor committed Mar 18, 2024
1 parent 637b0e0 commit 0dc435b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/weatherflow_cloud/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def wind_direction_icon_fn(degree: int) -> str:
"""Return a wind icon based on the degrees."""
degree = degree % 360 # Normalize degrees
direction_ranges = {
range(0, 23): "mdi:arrow-up-thin",
range(23): "mdi:arrow-up-thin",
range(23, 68): "mdi:arrow-top-right-thin",
range(68, 113): "mdi:arrow-right-thin",
range(113, 158): "mdi:arrow-bottom-right-thin",
Expand Down

0 comments on commit 0dc435b

Please sign in to comment.