Skip to content

Commit 0aa8f88

Browse files
committed
icfmeta correction
was comparing self v self instead of self v other
1 parent 22f665e commit 0aa8f88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bio2zarr/vcf2zarr/icf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ def __eq__(self, other):
197197
return NotImplemented
198198
return (sorted(self.samples) == sorted(other.samples) and
199199
sorted(self.contigs) == sorted(other.contigs) and
200-
sorted(self.filters) == sorted(self.filters) and
201-
sorted(self.fields) == sorted(self.fields))
200+
sorted(self.filters) == sorted(other.filters) and
201+
sorted(self.fields) == sorted(other.fields))
202202

203203

204204
def fixed_vcf_field_definitions():

0 commit comments

Comments
 (0)