Skip to content

Commit

Permalink
Merge pull request #872 from microsoftgraph/shem/expose_type_information
Browse files Browse the repository at this point in the history
Expose type information
  • Loading branch information
shemogumbe authored Aug 29, 2024
2 parents d0d514b + f9a2870 commit 4e01516
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Empty file added msgraph/py.typed
Empty file.
7 changes: 7 additions & 0 deletions mypy.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[mypy]
warn_unused_configs = true
files = "msgraph"
ignore_missing_imports = true

[mypy-msgraph.generated.*]
ignore_errors = True
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ warn_unused_configs = true
files = "msgraph"
ignore_missing_imports = true

[[tool.mypy.overrides]]
module = "msgraph.generated"
ignore_errors = true

[tool.yapf]
based_on_style = "pep8"
dedent_closing_brackets = true
Expand All @@ -77,3 +81,6 @@ push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"msgraph/_version.py" = ["{version}"]

[tool.poetry.packages]
include = ["msgraph"]

0 comments on commit 4e01516

Please sign in to comment.