Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jul 11, 2024
1 parent 6490369 commit 6e1c10f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/rds2py/granges.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def as_granges(robj):
_seqinfo = SeqInfo(
seqnames=_seqinfo_seqnames,
seqlengths=[None if x == -2147483648 else int(x) for x in _seqinfo_seqlengths],
is_circular=[None if x == -2147483648 else bool(x) for x in _seqinfo_is_circular],
is_circular=[
None if x == -2147483648 else bool(x) for x in _seqinfo_is_circular
],
genome=_seqinfo_genome,
)

Expand Down

0 comments on commit 6e1c10f

Please sign in to comment.