Remove unnecessary string literal concatenations (#30360)
This commit is contained in:
@@ -66,7 +66,7 @@ def validate(integrations: Dict[str, Integration], config: Config):
|
||||
if fp.read().strip() != content:
|
||||
config.add_error(
|
||||
"codeowners",
|
||||
"File CODEOWNERS is not up to date. " "Run python3 -m script.hassfest",
|
||||
"File CODEOWNERS is not up to date. Run python3 -m script.hassfest",
|
||||
fixable=True,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -68,7 +68,7 @@ def validate(integrations: Dict[str, Integration], config: Config):
|
||||
if fp.read().strip() != content:
|
||||
config.add_error(
|
||||
"ssdp",
|
||||
"File ssdp.py is not up to date. " "Run python3 -m script.hassfest",
|
||||
"File ssdp.py is not up to date. Run python3 -m script.hassfest",
|
||||
fixable=True,
|
||||
)
|
||||
return
|
||||
|
||||
@@ -122,7 +122,7 @@ def validate(integrations: Dict[str, Integration], config: Config):
|
||||
if current != content:
|
||||
config.add_error(
|
||||
"zeroconf",
|
||||
"File zeroconf.py is not up to date. " "Run python3 -m script.hassfest",
|
||||
"File zeroconf.py is not up to date. Run python3 -m script.hassfest",
|
||||
fixable=True,
|
||||
)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user