Skip to content

Commit

Permalink
disable vscode type checking in trtools files
Browse files Browse the repository at this point in the history
  • Loading branch information
aryarm committed Aug 27, 2024
1 parent 5ef51d5 commit b7e269c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions core/common.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#type: ignore
"""
Common util functions
"""
Expand Down
1 change: 1 addition & 0 deletions core/mergeutils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#type: ignore
"""
Utilities for reading multiple VCFs simulataneously
and keeping them in sync.
Expand Down
1 change: 1 addition & 0 deletions core/tr_harmonizer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#type: ignore
"""
Utilities for harmonizing tandem repeat VCF records.
Expand Down
1 change: 1 addition & 0 deletions core/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#type: ignore
"""
Util functions for calculating summary STR statistics
and performing basic string operations on STR alleles.
Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#type: ignore
"""Nox sessions."""
import os
import shutil
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,7 @@ omit = [
exclude_lines = [
"pragma: no cover",
]

[tool.pyright]
strictParameterNoneValue = false
ignore = ["**/tests/**"]

0 comments on commit b7e269c

Please sign in to comment.