Use literal string interpolation in core (f-strings) (#26166)
This commit is contained in:
parent
1efa29d6ff
commit
decf13b948
67 changed files with 180 additions and 246 deletions
|
@ -67,5 +67,5 @@ def validate(integrations: Dict[str, Integration], config):
|
|||
for dep in integration.manifest["dependencies"]:
|
||||
if dep not in integrations:
|
||||
integration.add_error(
|
||||
"dependencies", "Dependency {} does not exist".format(dep)
|
||||
"dependencies", f"Dependency {dep} does not exist"
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue