Title says it all: calling Reaction.delete just returns an error:
Requester.py:586 [PyGithub] DELETE https://api.github.com/reactions/323843145
process_pr_v2.py:4441 [WARNING] Failed to remove old reaction: 404 {"message": "Not Found", "documentation_url": "https://docs.github.com/rest", "status": "404"}
The URL in docstring is gone, the right way to delete a reaction now is to call IssueComment.delete_reaction(...) or similar method.
I can open a PR removing this method if that's the right approach.
Title says it all: calling
Reaction.deletejust returns an error:The URL in docstring is gone, the right way to delete a reaction now is to call
IssueComment.delete_reaction(...)or similar method.I can open a PR removing this method if that's the right approach.