pyupgrade

This commit is contained in:
Guilhem Saurel 2022-03-04 00:13:57 +01:00
parent c4e0bb76e9
commit b66b9717e4
5 changed files with 38 additions and 3 deletions

View file

@ -21,9 +21,9 @@ def github(data, headers):
"""Pretty-print a github notification."""
# TODO: Write nice useful formatters. This is only an example.
if headers["X-GitHub-Event"] == "push":
pusher, ref, a, b, c = [
pusher, ref, a, b, c = (
data[k] for k in ["pusher", "ref", "after", "before", "compare"]
]
)
pusher = f"[@{pusher['name']}](https://github.com/{pusher['name']})"
data["body"] = f"{pusher} pushed on {ref}: [{b}{a}]({c}):\n\n"
for commit in data["commits"]: