Reorders sensor imports for consistency

Reorders the import statements for sensor-related constants in the `sensors_wslink.py` file.

This change improves code readability and maintainability by ensuring a consistent order of imports.
schizza 2025-04-24 20:44:30 +02:00
parent 7bd28532ed
commit 49cd1acc40
No known key found for this signature in database
1 changed files with 4 additions and 4 deletions

View File

@ -27,22 +27,22 @@ from .const import (
DAILY_RAIN,
DEW_POINT,
HEAT_INDEX,
HOURLY_RAIN,
INDOOR_HUMIDITY,
INDOOR_TEMP,
MONTHLY_RAIN,
OUTSIDE_HUMIDITY,
OUTSIDE_TEMP,
RAIN,
SOLAR_RADIATION,
UV,
WEEKLY_RAIN,
WIND_AZIMUT,
WIND_DIR,
WIND_GUST,
WIND_SPEED,
UnitOfDir,
MONTHLY_RAIN,
YEARLY_RAIN,
HOURLY_RAIN,
WEEKLY_RAIN,
UnitOfDir,
)
from .sensors_common import WeatherSensorEntityDescription
from .utils import wind_dir_to_text