Fix scaffold (#67769)

This commit is contained in:
Paulus Schoutsen 2022-03-06 16:13:39 -08:00 committed by GitHub
parent cdaa7bb60c
commit 58321c50e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,7 +50,7 @@ class Info:
"""Update the integration manifest."""
print(f"Updating {self.domain} manifest: {kwargs}")
self.manifest_path.write_text(
json.dumps({**self.manifest(), **kwargs}, indent=2 + "\n")
json.dumps({**self.manifest(), **kwargs}, indent=2) + "\n"
)
@property