Skip to content

Commit

Permalink
Mypy fix for missing import.
Browse files Browse the repository at this point in the history
Mkdocs jupyter disallows errors.
  • Loading branch information
coady committed Jan 18, 2023
1 parent 7715bcf commit 0f040f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ plugins:
options:
show_root_heading: true
- mkdocs-jupyter:
execute: True
execute: true
allow_errors: false
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ waiter = ["py.typed"]
line-length = 100
skip-string-normalization = true

[[tool.mypy.overrides]]
module = ["multimethod"]
ignore_missing_imports = true

[tool.coverage.run]
source = ["waiter"]
branch = true

0 comments on commit 0f040f4

Please sign in to comment.