[annotations] fix annotations_eq

-e
This commit is contained in:
jan 2026-03-08 14:56:13 -07:00
commit a0d7d0ed26

View file

@ -47,7 +47,7 @@ def annotations_eq(aa: annotations_t, bb: annotations_t) -> bool:
keys_a = tuple(sorted(aa.keys())) keys_a = tuple(sorted(aa.keys()))
keys_b = tuple(sorted(bb.keys())) keys_b = tuple(sorted(bb.keys()))
if keys_a != keys_b: if keys_a != keys_b:
return keys_a < keys_b return False
for key in keys_a: for key in keys_a:
va = aa[key] va = aa[key]