Skip to content

Commit d159e83

Browse files
Update config_flow.py
1 parent 8eb53af commit d159e83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

homeassistant/components/thesilentwave/config_flow.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""Config flow for TheSilentWave integration."""
2+
13
import logging
24
import voluptuous as vol
35
from homeassistant import config_entries
@@ -12,7 +14,7 @@ class TheSilentWaveConfigFlow(config_entries.ConfigFlow, domain="thesilentwave")
1214

1315
VERSION = 1
1416

15-
async def async_step_user(self, user_input=None):
17+
async def async_step_user(self, user_input=None) -> config_entries.FlowResult:
1618
"""Handle the user input for the configuration."""
1719
errors = {}
1820

0 commit comments

Comments
 (0)