1
mirror of https://github.com/home-assistant/core synced 2024-07-27 18:58:57 +02:00

Do not automatically add title to strings.json (#53350)

This commit is contained in:
Paulus Schoutsen 2021-07-22 12:11:10 -07:00 committed by GitHub
parent 75f7d3d696
commit 0b71055989
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,7 +113,6 @@ def _custom_tasks(template, info: Info) -> None:
elif template == "config_flow":
info.update_manifest(config_flow=True)
info.update_strings(
title=info.name,
config={
"step": {
"user": {
@ -138,7 +137,6 @@ def _custom_tasks(template, info: Info) -> None:
elif template == "config_flow_discovery":
info.update_manifest(config_flow=True)
info.update_strings(
title=info.name,
config={
"step": {
"confirm": {
@ -155,7 +153,6 @@ def _custom_tasks(template, info: Info) -> None:
elif template == "config_flow_oauth2":
info.update_manifest(config_flow=True, dependencies=["http"])
info.update_strings(
title=info.name,
config={
"step": {
"pick_implementation": {