Skip to content

Commit

Permalink
Style typo in internal module
Browse files Browse the repository at this point in the history
  • Loading branch information
iosonofabio committed Apr 6, 2020
1 parent 244bade commit 0cfc9a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python3/HTSeq/_HTSeq_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def ChromVector_steps(cv):
start = cv.iv.start
prev_val = None
for i in range(cv.iv.start, cv.iv.end):
val = cv.array[ i - cv.offset ]
val = cv.array[i - cv.offset]
if prev_val is None or val != prev_val:
if prev_val is not None:
yield (HTSeq.GenomicInterval(cv.iv.chrom, start, i, cv.iv.strand), prev_val)
Expand Down

0 comments on commit 0cfc9a8

Please sign in to comment.