mirror of
https://github.com/home-assistant/core.git
synced 2026-04-29 21:21:46 +01: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()}"
|