From a0d7d0ed265e6bd51102248d1dcf918159b9fb24 Mon Sep 17 00:00:00 2001 From: jan Date: Sun, 8 Mar 2026 14:56:13 -0700 Subject: [PATCH] [annotations] fix annotations_eq -e --- masque/utils/comparisons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/utils/comparisons.py b/masque/utils/comparisons.py index 63981c9..ffb7206 100644 --- a/masque/utils/comparisons.py +++ b/masque/utils/comparisons.py @@ -47,7 +47,7 @@ def annotations_eq(aa: annotations_t, bb: annotations_t) -> bool: keys_a = tuple(sorted(aa.keys())) keys_b = tuple(sorted(bb.keys())) if keys_a != keys_b: - return keys_a < keys_b + return False for key in keys_a: va = aa[key]