We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d99c83 commit bcd0a20Copy full SHA for bcd0a20
clone_roles.py
@@ -59,8 +59,8 @@ def _rotate_roles(self) -> List[str]:
59
candidates = list(PEOPLE - set(maintainers))
60
random.shuffle(candidates)
61
62
- next_candidate = (
63
- lambda: candidates.pop() if candidates else random.choice(list(PEOPLE))
+ next_candidate = lambda: (
+ candidates.pop() if candidates else random.choice(list(PEOPLE))
64
)
65
66
# Remove the responsible of the first role and use the last
0 commit comments