Skip to content

Commit

Permalink
Remove Genedata in type for __eq__
Browse files Browse the repository at this point in the history
  • Loading branch information
jpjarnoux committed Sep 15, 2023
1 parent f4e6648 commit e992a17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.186
1.2.187
2 changes: 1 addition & 1 deletion ppanggolin/formats/readBinaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, start: int, stop: int, strand: str, gene_type: str, position:
self.product = product
self.genetic_code = genetic_code

def __eq__(self, other: Genedata):
def __eq__(self, other):
return self.start == other.start \
and self.stop == other.stop \
and self.strand == other.strand \
Expand Down

0 comments on commit e992a17

Please sign in to comment.