Skip to content

Commit 4e01516

Browse files
authored
Merge pull request #872 from microsoftgraph/shem/expose_type_information
Expose type information
2 parents d0d514b + f9a2870 commit 4e01516

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

msgraph/py.typed

Whitespace-only changes.

mypy.ini

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[mypy]
2+
warn_unused_configs = true
3+
files = "msgraph"
4+
ignore_missing_imports = true
5+
6+
[mypy-msgraph.generated.*]
7+
ignore_errors = True

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ warn_unused_configs = true
5252
files = "msgraph"
5353
ignore_missing_imports = true
5454

55+
[[tool.mypy.overrides]]
56+
module = "msgraph.generated"
57+
ignore_errors = true
58+
5559
[tool.yapf]
5660
based_on_style = "pep8"
5761
dedent_closing_brackets = true
@@ -77,3 +81,6 @@ push = false
7781
[tool.bumpver.file_patterns]
7882
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
7983
"msgraph/_version.py" = ["{version}"]
84+
85+
[tool.poetry.packages]
86+
include = ["msgraph"]

0 commit comments

Comments
 (0)