Skip to content

Commit

Permalink
fix(codecov): added 'pragma no cover' to overloaded function
Browse files Browse the repository at this point in the history
  • Loading branch information
TimD1 committed Sep 4, 2024
1 parent f92b3a0 commit 2f19451
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fgpyo/fasta/sequence_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,19 +449,19 @@ def to_sam_header(

@staticmethod
@overload
def from_sam(data: Path) -> "SequenceDictionary": ...
def from_sam(data: Path) -> "SequenceDictionary": ... # pragma: no cover

@staticmethod
@overload
def from_sam(data: pysam.AlignmentFile) -> "SequenceDictionary": ...
def from_sam(data: pysam.AlignmentFile) -> "SequenceDictionary": ... # pragma: no cover

@staticmethod
@overload
def from_sam(data: pysam.AlignmentHeader) -> "SequenceDictionary": ...
def from_sam(data: pysam.AlignmentHeader) -> "SequenceDictionary": ... # pragma: no cover

@staticmethod
@overload
def from_sam(data: List[Dict[str, Any]]) -> "SequenceDictionary": ...
def from_sam(data: List[Dict[str, Any]]) -> "SequenceDictionary": ... # pragma: no cover

@staticmethod
def from_sam(
Expand Down

0 comments on commit 2f19451

Please sign in to comment.