Skip to content

Commit f638297

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent dbdbf5a commit f638297

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clone_roles.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ def _rotate_roles(self) -> List[str]:
5959
candidates = list(PEOPLE - set(maintainers))
6060
random.shuffle(candidates)
6161

62-
next_candidate = (
63-
lambda: candidates.pop() if candidates else random.choice(list(PEOPLE))
62+
next_candidate = lambda: (
63+
candidates.pop() if candidates else random.choice(list(PEOPLE))
6464
)
6565

6666
# Remove the responsible of the first role and use the last

0 commit comments

Comments
 (0)