Skip to content

Commit

Permalink
fix(mi): TRGT error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jul 16, 2024
1 parent 83fd093 commit 6699179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion strkit/mi/trgt.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _unzip_gt(
tuple(map(lambda x: x / motif_len, parse_ci(vals[1][1]))),
),
)
except ValueError:
except (ValueError, TypeError):
return (None, None), (None, None)


Expand Down

0 comments on commit 6699179

Please sign in to comment.