Skip to content

Commit

Permalink
fix(libcalignmentfile.pyi): update IteratorColumn with correct __iter…
Browse files Browse the repository at this point in the history
…__ and __next__ object
  • Loading branch information
mshunjan committed Jul 6, 2024
1 parent 0787ca9 commit 69a5127
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysam/libcalignmentfile.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else:
from typing import Literal

from pysam.libchtslib import HTSFile, _HasFileNo
from pysam.libcalignedsegment import AlignedSegment
from pysam.libcalignedsegment import AlignedSegment, PileupColumn
from pysam.libcfaidx import FastaFile

class IndexStats(NamedTuple):
Expand Down Expand Up @@ -204,7 +204,7 @@ class IteratorRowRegion(IteratorRow): ...
class IteratorRowSelection(IteratorRow): ...

class IteratorColumn:
def __iter__(self) -> IteratorRow: ...
def __iter__(self) -> IteratorColumn: ...
def __next__(self) -> PileupColumn: ...
@property
def seq_len(self) -> int: ...
Expand Down

0 comments on commit 69a5127

Please sign in to comment.