Skip to content

Commit 01d71b0

Browse files
committed
Add mypy for check typing
1 parent babdaf7 commit 01d71b0

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

mypy.ini

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[mypy]
2+
show_column_numbers = True
3+
ignore_missing_imports = True
4+
5+
[mypy-tests.*]
6+
ignore_errors = True
7+
show_none_errors = True

poetry.lock

Lines changed: 33 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pytest = "^5.2"
2626
respx = "^0.16"
2727
black = "^20.8b1"
2828
ipython = "^7.19.0"
29+
mypy = "^0.790"
2930

3031
[tool.black]
3132
line-length = 79

0 commit comments

Comments
 (0)