mirror of
https://github.com/home-assistant/core.git
synced 2025-07-29 18:28:14 +02:00
Move overlapping pylint rules to ruff, disable mypy overlap (#94359)
This commit is contained in:
@ -162,8 +162,8 @@ def _gather_info(fields) -> dict:
|
||||
if "default" in info:
|
||||
msg += f" [{info['default']}]"
|
||||
value = input(f"{msg}\n> ")
|
||||
except (KeyboardInterrupt, EOFError):
|
||||
raise ExitApp("Interrupted!", 1)
|
||||
except (KeyboardInterrupt, EOFError) as err:
|
||||
raise ExitApp("Interrupted!", 1) from err
|
||||
|
||||
value = value.strip()
|
||||
|
||||
|
Reference in New Issue
Block a user