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

Fix scaffold

This commit is contained in:
Paulus Schoutsen 2019-11-04 14:14:57 -08:00
parent 83a9f4ddb8
commit 16a80beb43

View File

@ -120,7 +120,7 @@ def _load_existing_integration(domain) -> Info:
manifest = json.loads((COMPONENT_DIR / domain / "manifest.json").read_text())
return Info(domain=domain, name=manifest["name"])
return Info(domain=domain, name=manifest["name"], is_new=False)
def _gather_info(fields) -> dict: