Skip to content

Commit

Permalink
Fix typo in requires-python hassfest error message (home-assistant#87896
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dtrodrigues authored Feb 12, 2023
1 parent 4db4081 commit c7e9afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/hassfest/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def validate(integrations: dict[str, Integration], config: Config) -> None:
if data["project"]["requires-python"] != required_py_version:
config.add_error(
"metadata",
f"'project.requires-python' value doesn't match '{required_py_version}",
f"'project.requires-python' value doesn't match '{required_py_version}'",
)
except KeyError:
config.add_error("metadata", "No 'options.python_requires' key found!")

0 comments on commit c7e9afc

Please sign in to comment.