Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma committed Jul 16, 2024
1 parent ff24bca commit 8fd4680
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/variation/hgvs_dup_del_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
DELS = {AltType.DELETION_AMBIGUOUS, AltType.DELETION}

# Define supported alt types for HGVS Dup Del Mode
DELS_DUPS = {AltType.DELETION, AltType.DELETION_AMBIGUOUS, AltType.DUPLICATION, AltType.DUPLICATION_AMBIGUOUS}
DELS_DUPS = {
AltType.DELETION,
AltType.DELETION_AMBIGUOUS,
AltType.DUPLICATION,
AltType.DUPLICATION_AMBIGUOUS,
}


def _check_supported_alt_type(alt_type: AltType) -> None:
Expand Down

0 comments on commit 8fd4680

Please sign in to comment.