You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							440 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							440 B
						
					
					
				""" Georide config flow file """
 | 
						|
 | 
						|
from homeassistant import config_entries
 | 
						|
import voluptuous as vol
 | 
						|
 | 
						|
from .const import DOMAIN
 | 
						|
 | 
						|
class GeorideConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
 | 
						|
    """Geride config flow """
 | 
						|
    async def async_step_user(self, info):
 | 
						|
        return self.async_show_form(
 | 
						|
            step_id='user',
 | 
						|
            data_schema=vol.Schema({
 | 
						|
                vol.Required('password'): str
 | 
						|
            }))
 | 
						|
         |