[annotations] fix annotations_eq
-e
This commit is contained in:
parent
d32a5ee762
commit
a0d7d0ed26
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue