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