Fix typo in requires-python hassfest error message (#87896)

This commit is contained in:
Dustin Rodrigues 2023-02-12 10:11:56 -05:00 committed by GitHub
parent 4db40810dd
commit c7e9afcef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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!")