Skip to content

Commit

Permalink
Fix AlignmentHeader.get_reference_length() type hint (PR #1313)
Browse files Browse the repository at this point in the history
  • Loading branch information
msto authored Oct 17, 2024
1 parent 7f83184 commit cdd962c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysam/libcalignmentfile.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class AlignmentHeader:
def lengths(self) -> Tuple[int]: ...
def to_dict(self) -> Dict: ...
def get_reference_name(self, tid: int) -> Optional[str]: ...
def get_reference_length(self, reference: int) -> int: ...
def get_reference_length(self, reference: str) -> int: ...
def is_valid_tid(self, tid: int) -> bool: ...
def get_tid(self, reference: str) -> int: ...

Expand Down

0 comments on commit cdd962c

Please sign in to comment.