Skip to content

Commit

Permalink
rename method
Browse files Browse the repository at this point in the history
  • Loading branch information
jubintgh committed Mar 15, 2024
1 parent c7eceff commit b6042c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bugbot/rules/not_landed.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def attachment_handler(attachments, data):

return data

def get_bz_userid(self, phids):
def get_bz_users(self, phids):
if not phids:
return {}

Expand Down Expand Up @@ -320,7 +320,7 @@ def get_bugs(self, date="today", bug_ids=[]):
assignee = max(data["author"], key=data["author"].get)
bug_assignee_map[bugid] = assignee

bz_reviewers = self.get_bz_userid(reviewers_phid)
bz_reviewers = self.get_bz_users(reviewers_phid)
all_reviewers = set(bz_reviewers.keys())

for bugid, data in bugs_patch.items():
Expand Down

0 comments on commit b6042c2

Please sign in to comment.