Skip to content

Commit d306e2e

Browse files
committed
Add mypy for static type checking
1 parent fb306d5 commit d306e2e

File tree

3 files changed

+95
-21
lines changed

3 files changed

+95
-21
lines changed

Pipfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ name = "pypi"
55

66
[packages] # Packages required to run the application
77
requests = "==2.23.0"
8-
isort = "==5.7.0"
9-
yapf = "==0.30.0"
108

119
[dev-packages] # Packages required to develop the application
1210
coverage = "==5.0.3"
1311
pylint = "==2.6.0"
1412
responses = "==0.10.12"
1513
flit = "==2.2.0"
1614
azure-identity = "==1.5.0"
15+
isort = "==5.7.0"
16+
yapf = "==0.30.0"
17+
mypy = "==0.800"

Pipfile.lock

Lines changed: 89 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mypy.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[mypy]
2+
files=msgraphcore
3+
ignore_missing_imports=true

0 commit comments

Comments
 (0)