From d80d11757f3ac65d413bf44506e80ad301f0adb1 Mon Sep 17 00:00:00 2001 From: Forest Gregg Date: Thu, 27 Jun 2024 00:34:27 -0400 Subject: [PATCH] typo --- benchmarks/benchmarks/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/benchmarks/common.py b/benchmarks/benchmarks/common.py index 18f1d21b..17e129f9 100644 --- a/benchmarks/benchmarks/common.py +++ b/benchmarks/benchmarks/common.py @@ -56,7 +56,7 @@ def get_true_dupes(data: dict) -> set: ): pair_l = list(pair) if len(pair_l) == 2: - a, b = pair + a, b = pair_l duplicates.add(frozenset((a[0], b[0]))) return duplicates