Skip to content

Commit 81e8d6b

Browse files
authored
random.choice wasn't needed (GH-21)
1 parent 05fa927 commit 81e8d6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backport/backport_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async def backport_pr(event, gh, *args, **kwargs):
3232
if branches:
3333
easter_egg = ""
3434
if random.random() < 0.1:
35-
easter_egg = random.choice(EASTER_EGG)
35+
easter_egg = EASTER_EGG
3636
thanks_to = ""
3737
if created_by == merged_by:
3838
thanks_to = f"Thanks @{created_by} for the PR 🌮🎉."

0 commit comments

Comments
 (0)