Skip to content

Commit 71586ee

Browse files
authored
fix typo
1 parent 79fa746 commit 71586ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/pr_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def get_allowed_users(self) -> list[str]:
105105
# all words to lowercase and spaces replace with a -
106106
team: github.Team = org.get_team_by_slug("opendatahub-tests-contributors")
107107
members: PaginatedList[github.NamedUser] = team.get_members()
108-
users = [m.login for member in members]
108+
users = [member.login for member in members]
109109
# TODO: replace once bot user is part of the org and team
110110
# users = ["lugi0", "rnetser", "adolfo-ab", "tarukumar", "dbasunag", "mwaykole"]
111111
return users

0 commit comments

Comments
 (0)