Skip to content

Commit 81aeb1e

Browse files
author
David Rickett
committed
Move most of allele logic into a model
1 parent 6fe7e5d commit 81aeb1e

File tree

6 files changed

+645
-260
lines changed

6 files changed

+645
-260
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
repos:
3-
- repo: https://github.com/pycqa/pydocstyle
4-
rev: 6.3.0
5-
hooks:
6-
- id: pydocstyle
73
- repo: https://github.com/pre-commit/pre-commit-hooks
84
rev: v4.4.0
95
hooks:
@@ -13,10 +9,6 @@ repos:
139
- id: end-of-file-fixer
1410
- id: name-tests-test
1511
- id: trailing-whitespace
16-
- repo: https://github.com/pre-commit/mirrors-mypy
17-
rev: v1.1.1
18-
hooks:
19-
- id: mypy
2012
- repo: https://github.com/psf/black
2113
rev: 23.1.0
2214
hooks:

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,6 @@ exclude_lines = [
133133
"if __name__ == .__main__.:",
134134
"if TYPE_CHECKING:",
135135
]
136+
137+
[tool.pydocstyle]
138+
match = "src/**/*.py"

0 commit comments

Comments
 (0)