Fix scaffold

pull/28547/head
Paulus Schoutsen 2019-11-04 14:14:57 -08:00
parent 83a9f4ddb8
commit 16a80beb43
1 changed files with 1 additions and 1 deletions

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: