···33url = "https://api.github.com/repos/urschrei/pyzotero/contributors"
44result = httpx.get(url)
55result.raise_for_status()
66-as_dict = [d for d in result.json() if not d["login"].lower().startswith("dependabot")]
77-# remove me from the list
88-as_dict.pop(0)
66+contributors = result.json()
77+# filter out dependabot and meeee
88+as_dict = [
99+ contributor
1010+ for contributor in contributors[1:]
1111+ if not contributor["login"].lower().startswith("dependabot")
1212+]
913header = "# This is the list of people (as distinct from [AUTHORS](AUTHORS)) who have contributed code to Pyzotero.\n\n| **Commits** | **Contributor**<br/> |\n| --- |--- |\n"
1014template = "| {contributions} | [{login}](https://github.com/urschrei/pyzotero/commits?author={login}) |\n"
1115with open("CONTRIBUTORS.md", "w", encoding="utf-8") as f: