From 8b052ba9195295fb34cefe0ba284ad797929ef85 Mon Sep 17 00:00:00 2001 From: tkim01 Date: Sun, 16 Aug 2026 20:49:46 +0900 Subject: [PATCH] Apply frozen candidate patch --- more_itertools/recipes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/more_itertools/recipes.py b/more_itertools/recipes.py index f7db03b..67f76fa 100644 --- a/more_itertools/recipes.py +++ b/more_itertools/recipes.py @@ -222,6 +222,7 @@ def all_equal(iterable, key=None): for first in iterator: for second in iterator: return False + return True return True