Skip to content

Commit

Permalink
Fix update_requirements script
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Mar 4, 2021
1 parent a2d4fa4 commit b20b616
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/update_requirements
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ for req in manifest["requirements"]:
pkg = get_package(req)
if pkg in harequire:
print(f"{pkg} in HA requirements, no need here.")
print(json.dumps(manifest["requirements"], indent=4, sort_keys=True))
print(json.dumps(manifest["requirements"], indent=4))
with open(f"{PKG_PATH}/manifest.json", "w") as manifestfile:
manifestfile.write(json.dumps(manifest, indent=4, sort_keys=True))
manifestfile.write(json.dumps(manifest, indent=4))

0 comments on commit b20b616

Please sign in to comment.