mirror of
https://github.com/home-assistant/core.git
synced 2025-10-14 14:19:35 +00: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)
|