Remove prefix

This commit is contained in:
Matt 2025-01-22 19:53:16 +00:00
parent adad02848a
commit 8b20315634

View file

@ -54,7 +54,7 @@ def main():
print("Top owners", top_owners)
for owner, _ in top_owners:
try:
pr.add_to_assignees(owner)
pr.add_to_assignees(owner.removeprefix('@'))
except github.GithubException as e:
print(f"Failed to assign {owner}: {e}")