mirror of
https://github.com/home-assistant/core.git
synced 2025-11-10 11:29:46 +00:00
7 lines
177 B
Python
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()}"
|