mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 15:06:05 +01:00
12 lines
359 B
Python
12 lines
359 B
Python
"""Analytics platform."""
|
|
|
|
from homeassistant.components.analytics import AnalyticsInput, AnalyticsModifications
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
async def async_modify_analytics(
|
|
hass: HomeAssistant, analytics_input: AnalyticsInput
|
|
) -> AnalyticsModifications:
|
|
"""Modify the analytics."""
|
|
return AnalyticsModifications(remove=True)
|