Files
core/homeassistant/components/noaa_tides/helpers.py
2025-02-09 22:32:11 +01:00

7 lines
177 B
Python

"""Helpers for NOAA Tides integration."""
def get_station_unique_id(station_id: str) -> str:
"""Convert a station ID to a unique ID."""
return f"{station_id.lower()}"