Skip to content

Commit

Permalink
chore: tiny type fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
clintval committed Jan 2, 2025
1 parent e8f7f1d commit c17331d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fgpyo/sam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1215,9 +1215,9 @@ class AuxAlignment(ABC, DataclassInstance):
reference_start: int
is_forward: bool
cigar: Cigar
mapq: int | None = None
edit_distance: int | None = None
alignment_score: int | None = None
mapq: Optional[int] = None
edit_distance: Optional[int] = None
alignment_score: Optional[int] = None

def __post_init__(self) -> None:
"""Perform post-initialization validation on this dataclass."""
Expand Down

0 comments on commit c17331d

Please sign in to comment.