1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Add pyupgrade (in pre-commit and CI) (#33688)

* Add pyupgrade (in pre-commit and CI)

* Fix leftover results of pyupgrade

* Ensure we run for Python 3.7 on pyupgrade
This commit is contained in:
Franck Nijhof
2020-04-05 12:49:57 +02:00
committed by GitHub
parent 5bf7e0fcc0
commit f38011560f
9 changed files with 18 additions and 9 deletions

View File

@@ -62,7 +62,7 @@ def validate(integrations: Dict[str, Integration], config: Config):
codeowners_path = config.root / "CODEOWNERS"
config.cache["codeowners"] = content = generate_and_validate(integrations)
with open(str(codeowners_path), "r") as fp:
with open(str(codeowners_path)) as fp:
if fp.read().strip() != content:
config.add_error(
"codeowners",