From 23e80a9d24a197011e5c8a57d512b3150b46e985 Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Mon, 26 Jan 2026 15:09:58 -0700 Subject: [PATCH] Remove outdated comment in SuggestedAssignableActors Deleted a comment about the query variable being passed as null when empty, as it is no longer relevant or necessary. --- api/queries_pr.go | 1 - 1 file changed, 1 deletion(-) diff --git a/api/queries_pr.go b/api/queries_pr.go index 6a37ea0b9..c806d6bb7 100644 --- a/api/queries_pr.go +++ b/api/queries_pr.go @@ -703,7 +703,6 @@ func RemovePullRequestReviews(client *Client, repo ghrepo.Interface, prNumber in // SuggestedAssignableActors fetches up to 10 suggested actors for a specific assignable // (Issue or PullRequest) node ID. `assignableID` is the GraphQL node ID for the Issue/PR. -// If query is empty, the query variable is passed as null to omit filtering. // Returns the actors, the total count of available assignees in the repo, and an error. func SuggestedAssignableActors(client *Client, repo ghrepo.Interface, assignableID string, query string) ([]AssignableActor, int, error) { type responseData struct {